I'm building an app where I need to get new PFObjects as users upload them. Currently what I'm doing is running a query every 10 seconds to query the database for new objects.
As you could imagine, this is extremely inefficient and heavy on requests.
I was wondering if there was any way of triggering a query if the database in parse has been updated? For example a user saves an object to parse, which triggers a query on all other users devices to download the new object.