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 Branch mutation.

Operation details

FieldValue
NamecreateBranch
GroupBranches
TypeMutation
SignaturecreateBranch(input: CreateBranchInput!): Branch!

Playground

Query

Query
mutation CreateBranch($input: CreateBranchInput!) {
  createBranch(input: $input) {
    id
    name
    description
    status
    createdAt
    updatedAt
  }
}

Variables

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