Restrictions for internal / external requests using Parse.com to send push notifications?

I know Parse.com restricts queries by default to objects 100

and you can manually set the query limit for 1000

objects ... However, I also read that Push Notification 'where' query NOT limits the number of objects you can target ...

Parse.Push.send({ 
    where: unlimitedQuery,
    data: {
        alert: "Push Message Text"
    }
});

      

My question is about passing Inner / Outer requests to Parse.Push object as "where" property. Are these Inner / Outer queries still subject to object 100-1000, or are they also free from this limitation?

+3


source to share


1 answer


The scope of the analysis request does not apply to push notifications. Push Query restrictions will not be affected and you can send push to any number of people according to the parse.com plan you are subscribed to.



+3


source







All Articles