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

Operation details

FieldValue
NamecreateBranchPolicy
GroupBranches
TypeMutation
SignaturecreateBranchPolicy(input: CreateBranchPolicyInput!): BranchPolicy!

Playground

Query

Query
mutation CreateBranchPolicy($input: CreateBranchPolicyInput!) {
  createBranchPolicy(input: $input) {
    id
    name
    createdAt
    updatedAt
    allowSelfApproval
    autoMergeWhenApproved
  }
}

Variables

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