@textile/hub > Query > or
Query.or() method
or concatenates a new condition that is sufficient for an instance to satisfy, independent of the current Query. Has left-associativity as: (a And b) Or c
Signature:
or(query: Query): Query;
Parameters
Parameter | Type | Description |
---|---|---|
query | Query | The 'sub-query' to concat to the existing query. |
Returns: