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

EventFilter

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

Represents a filter for included data on a stream object.

interface EventFilter {
sqlWhereClause?: string;
}

§Properties

§
sqlWhereClause?: string
[src]

An SQL-query Where clause selecting which data should be included, not including the "WHERE" keyword. E.g., "t.key1 = 'value1' AND t.key2 = 'value2'".