Skip to main content
Module

x/google_datastore/types.d.ts>LookupResponse

A set of APIs that allow interfacing to Google Datastore on GCP from Deno.
Go to Latest
interface LookupResponse
import { type LookupResponse } from "https://deno.land/x/google_datastore@0.0.14/types.d.ts";

The response for Datastore.Lookup.

Properties

optional
deferred: Key[]

A list of keys that were not looked up due to resource constraints.

The order of results in this field is undefined and has no relation to the order of the keys in the input.

optional
found: EntityResult[]

Entities found as ResultType.FULL entities.

The order of results in this field is undefined and has no relation to the order of the keys in the input.

optional
missing: EntityResult[]

Entities not found as ResultType.KEY_ONLY entities.

The order of results in this field is undefined and has no relation to the order of the keys in the input.