async.graphql 435 B

1234567891011
  1. # A job corresponds to some long running task that the client should poll for status.
  2. type Job {
  3. # This indicates if the job is still queued or has been run.
  4. done: Boolean!
  5. # A globally-unique identifier that's returned when running an asynchronous mutation.
  6. id: ID!
  7. # 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.
  8. # query: QueryRoot
  9. }