functional-models
    Preparing search index...

    Function textQuery

    • A helper query that is text based.

      Parameters

      • key: string

        The property key/name

      • value: undefined | null | string

        The value to match

      • Optionaloptions: Omit<Partial<PropertyOptions>, "type" | "equalitySymbol">

        Additional text based options

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