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

CompositeFilter

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

A filter that merges multiple other filters using the given operator.

interface CompositeFilter {
filters?: Filter[];
op?: "OPERATOR_UNSPECIFIED" | "AND" | "OR";
}

§Properties

§
filters?: Filter[]
[src]

The list of filters to combine. Requires: * At least one filter is present.

§
op?: "OPERATOR_UNSPECIFIED" | "AND" | "OR"
[src]

The operator for combining multiple filters.