Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

PropertyFilter

import type { PropertyFilter } from "https://googleapis.deno.dev/v1/datastore:v1.ts";

A filter on a specific property.

interface PropertyFilter {
op?:
| "OPERATOR_UNSPECIFIED"
| "LESS_THAN"
| "LESS_THAN_OR_EQUAL"
| "GREATER_THAN"
| "GREATER_THAN_OR_EQUAL"
| "EQUAL"
| "IN"
| "NOT_EQUAL"
| "HAS_ANCESTOR"
| "NOT_IN";
property?: PropertyReference;
value?: Value;
}

§Properties

§
op?: "OPERATOR_UNSPECIFIED" | "LESS_THAN" | "LESS_THAN_OR_EQUAL" | "GREATER_THAN" | "GREATER_THAN_OR_EQUAL" | "EQUAL" | "IN" | "NOT_EQUAL" | "HAS_ANCESTOR" | "NOT_IN"
[src]

The operator to filter by.

§

The property to filter by.

§
value?: Value
[src]

The value to compare the property to.