Skip to main content
Module

x/google_datastore/mod.ts>Query#filter

A set of APIs that allow interfacing to Google Datastore on GCP from Deno.
Latest
method Query.prototype.filter
Re-export
import { Query } from "https://deno.land/x/google_datastore@0.2.1/mod.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
op: Operator
value: unknown