Defines the parameters necessary to perform a query.

interface QueryDefinition {
    options?: QueryOptions;
    source: FeatureSource;
    where: string;
}

Properties

Properties

options?: QueryOptions

Additional options that affect the query.

The source to query.

where: string

An SQL expression to match against, e.g. "lastName='Smith'".