functional-models
    Preparing search index...

    Function numberQuery

    • A helper query that is number based.

      Parameters

      • key: string

        The property key/name

      • value: undefined | null | string | number

        The value to match

      • equalitySymbol: EqualitySymbol = EqualitySymbol.eq

        A matching symbol for the number

      Returns Readonly<
          {
              equalitySymbol: EqualitySymbol;
              key: string;
              options: {
                  caseSensitive?: boolean;
                  endsWith?: boolean;
                  startsWith?: boolean;
              };
              type: "property";
              value: any;
              valueType: DatastoreValueType;
          },
      >