functional-models
    Preparing search index...

    Function booleanQuery

    • A helper query that is for boolean values.

      Parameters

      • key: string

        The property key/name

      • value: undefined | null | boolean

        The value to match

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