Global

Type Definitions

QueryOperators

Description:
  • Collection of query operators for Firestore queries.
Source:
Properties:
Name Type Description
lessThan string Represents the less than operator (`<`).
lessThanOrEqualTo string Represents the less than or equal to operator (`<=`).
equalTo string Represents the equal to operator (`==`).
greaterThan string Represents the greater than operator (`>`).
greaterThanOrEqualTo string Represents the greater than or equal to operator (`>=`).
notEqualTo string Represents the not equal to operator (`!=`).
arrayContains string Represents the array contains operator (`array-contains`).
arrayContainsAny string Represents the array contains any operator (`array-contains-any`).
in string Represents the "in" operator (`in`).
notIn string Represents the not in operator (`not-in`).
Collection of query operators for Firestore queries.
Type:
  • Object