Seeds object schema
The seeds object allows you to query information about all seeds in a given job.
Arguments
When querying for seeds, the following arguments are available.
| Field | Type | Required? | Description | 
uniqueId | String! | Yes | No description provided | 
Below we show some illustrative example queries and outline the schema of the seeds object.
Example query
The example query below pulls relevant information about all seeds in a given job. For instance, you can view load times.
{
  job(id: 123) {
    seeds {
      uniqueId
      name
      executionTime
      status
    }
  }
}
Fields
When querying for seeds, the following fields are available:
Fetching data...
0