functional-models
    Preparing search index...

    Interface PropertyQuery

    A search that describes a property and its value.

    interface PropertyQuery {
        equalitySymbol: EqualitySymbol;
        key: string;
        options: PropertyOptions;
        type: "property";
        value: any;
        valueType: DatastoreValueType;
    }
    Index

    Properties

    equalitySymbol: EqualitySymbol

    How the value should be compared.

    key: string

    The property's key

    Options for additional matching.

    type: "property"

    Distinguishes this as a property query.

    value: any

    The value to search for.

    The type of database value.