We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06f699d commit 1f74896Copy full SHA for 1f74896
src/push.js
@@ -30,7 +30,7 @@ module.exports = function(AV) {
30
data.where = data.where.toJSON().where;
31
}
32
33
- if(data.where && data.cql){
+ if (data.where && data.cql) {
34
throw new Error("Both where and cql can't be set");
35
36
storage.d.ts
@@ -766,6 +766,7 @@ declare namespace AV {
766
expiration_time?: Date;
767
expiration_interval?: number;
768
where?: Query;
769
+ cql?: string;
770
data?: any;
771
alert?: string;
772
badge?: string;
0 commit comments