functional-models
    Preparing search index...

    Interface PropertyQuery

    A search that describes a property and its value.

    interface PropertyQuery {
        equalitySymbol: EqualitySymbol;
        key: string;
        options: {
            caseSensitive?: boolean;
            endsWith?: boolean;
            startsWith?: boolean;
        };
        type: "property";
        value: any;
        valueType: DatastoreValueType;
    }
    Index

    Properties

    equalitySymbol: EqualitySymbol

    How the value should be compared.

    key: string

    The property's key

    options: { caseSensitive?: boolean; endsWith?: boolean; startsWith?: boolean }

    Options for additional matching.

    Type declaration

    • OptionalcaseSensitive?: boolean

      Should this be a case sensitive search. (for text)

    • OptionalendsWith?: boolean

      Indicates that the value is a "endsWith" query.

    • OptionalstartsWith?: boolean

      Indicates that the value is a "startsWith" query.

    type: "property"

    Distinguishes this as a property query.

    value: any

    The value to search for.

    The type of database value.