Skip to main content
Create Project Skill mutation.

Operation details

FieldValue
NamecreateProjectSkill
GroupProject Primitives
TypeMutation
SignaturecreateProjectSkill(input: CreateProjectSkillInput!): ProjectSkillDocument!

Playground

Query

Query
mutation CreateProjectSkill($input: CreateProjectSkillInput!) {
  createProjectSkill(input: $input) {
    id
    name
    description
    allowedTools
    editMode
    sections
  }
}

Variables

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