Skip to content

Commit

Permalink
Merge pull request #46 from joao-azevedo-hydradev/patch-1
Browse files Browse the repository at this point in the history
Missing ARRAY_CONTAINS operator
  • Loading branch information
grahamearley authored Sep 14, 2018
2 parents 793025e + f28e750 commit 5896447
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Query.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ var FirestoreQuery_ = function (from, callback) {
'<': 'LESS_THAN',
'<=': 'LESS_THAN_OR_EQUAL',
'>': 'GREATER_THAN',
'>=': 'GREATER_THAN_OR_EQUAL'
'>=': 'GREATER_THAN_OR_EQUAL',
'contains': 'ARRAY_CONTAINS'
}

// @see {@link https://firebase.google.com/docs/firestore/reference/rest/v1beta1/StructuredQuery#Operator_2 FieldFilter Operator}
Expand Down

0 comments on commit 5896447

Please sign in to comment.