Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

LookupRequest

import type { LookupRequest } from "https://googleapis.deno.dev/v1/datastore:v1.ts";

The request for Datastore.Lookup.

interface LookupRequest {
databaseId?: string;
keys?: Key[];
propertyMask?: PropertyMask;
readOptions?: ReadOptions;
}

§Properties

§
databaseId?: string
[src]

The ID of the database against which to make the request. '(default)' is not allowed; please use empty string '' to refer the default database.

§
keys?: Key[]
[src]

Required. Keys of entities to look up.

§
propertyMask?: PropertyMask
[src]

The properties to return. Defaults to returning all properties. If this field is set and an entity has a property not referenced in the mask, it will be absent from LookupResponse.found.entity.properties. The entity's key is always returned.

§
readOptions?: ReadOptions
[src]

The options for this lookup request.