Skip to main content

Documentation Index

Fetch the complete documentation index at: https://veryfront.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Create Job mutation.

Operation details

FieldValue
NamecreateJob
GroupJobs
TypeMutation
SignaturecreateJob(input: CreateJobInput!): Job!

Playground

Query

Query
mutation CreateJob($input: CreateJobInput!) {
  createJob(input: $input) {
    id
    name
    status
    createdAt
    updatedAt
    artifacts
  }
}

Variables

Variables
{
  "input": {
    "projectId": "",
    "name": "",
    "target": ""
  }
}