Skip to main content
Module

x/google_datastore/query.ts>Query#filter

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

Filter the results where the supplied property equals the value.

To filter by ancestors see Query.hasAncestor.

Parameters

property: string
value: unknown

Filter the results where the supplied property matches the operator.

The operators "=", "<", ">", "<=", and ">=" are supported. To filter by ancestors see Query.hasAncestor.

Parameters

property: string
value: unknown