- # A job corresponds to some long running task that the client should poll for status.
- type Job {
- # This indicates if the job is still queued or has been run.
- done: Boolean!
- # A globally-unique identifier that's returned when running an asynchronous mutation.
- id: ID!
- # This field will only resolve once the job is done. Can be used to ask for object(s) that have been changed by the job.
- # query: QueryRoot
- }
|