Interact with job-collections
masterJob collections are backed by Meteor Collections and support standard reactive methods like .find() and .findOne() on the client.
Important Security Note: Meteor clients are automatically denied permission to directly insert, update, or remove jobs. To modify jobs, you must use the provided JobCollection, Job, and JobQueue APIs. Servers retain access to standard Meteor collection methods but should favor the job collection APIs to ensure the job document model is correctly maintained and enforced.
For non-Meteor clients, you can use the meteor-job npm package to implement identical functionality via the same interfaces.