Helpful constants to use for Google Cloud Firestore.
Classes
ArrayRemove
ArrayRemove(values)
Field transform: remove values from an array field.
Parameter | |
---|---|
Name | Description |
values |
List Tuple
values to remove. |
ArrayUnion
ArrayUnion(values)
Field transform: appends missing values to an array field.
Parameter | |
---|---|
Name | Description |
values |
List Tuple
values to append. |
Increment
Increment(value)
Field transform: increment a numeric field with specified value.
Parameter | |
---|---|
Name | Description |
value |
int float
value used to increment the field. |
Maximum
Maximum(value)
Field transform: bound numeric field with specified value.
Parameter | |
---|---|
Name | Description |
value |
int float
value used to bound the field. |
Minimum
Minimum(value)
Field transform: bound numeric field with specified value.
Parameter | |
---|---|
Name | Description |
value |
int float
value used to bound the field. |
Sentinel
Sentinel(description)
Sentinel objects used to signal special handling.