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

Filter

import type { Filter } from "https://aws-api.deno.dev/v0.4/services/wisdom.ts?docs=full";

A search filter.

interface Filter {
field: FilterField;
operator: FilterOperator;
value: string;
}

§Properties

§

The field on which to filter.

§

The operator to use for comparing the field’s value with the provided value.

§
value: string
[src]

The desired field value on which to filter.