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

FilterExpression

import type { FilterExpression } from "https://googleapis.deno.dev/v1/analyticsdata:v1beta.ts";

To express dimension or metric filters. The fields in the same FilterExpression need to be either all dimensions or all metrics.

interface FilterExpression {
filter?: Filter;
notExpression?: FilterExpression;
}

§Properties

§

The FilterExpressions in and_group have an AND relationship.

§
filter?: Filter
[src]

A primitive filter. In the same FilterExpression, all of the filter's field names need to be either all dimensions or all metrics.

§
notExpression?: FilterExpression
[src]

The FilterExpression is NOT of not_expression.

§

The FilterExpressions in or_group have an OR relationship.