Skip to main content
Module

x/google_datastore/types.d.ts>PropertyFilter

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

A filter on a specific property.

Properties

op:
| "LESS_THAN"
| "LESS_THAN_OR_EQUAL"
| "GREATER_THAN"
| "GREATER_THAN_OR_EQUAL"
| "EQUAL"
| "HAS_ANCESTOR"

The operator to filter by.

The property to filter by.

value: Value

The value to compare the property to.