Skip to main content
Module

x/google_datastore/mod.ts>Datastore#query

A set of APIs that allow interfacing to Google Datastore on GCP from Deno.
Latest
method Datastore.prototype.query
import { Datastore } from "https://deno.land/x/google_datastore@0.2.1/mod.ts";

Run a query and convert the return entities to objects, resolving with an array containing all the results.

If an error occurs, the promise will be rejected with an instance of DatastoreError containing more information about the error.

Returns

Promise<(T & EntityMetaData)[]>