Skip to main content
Create Project Resource mutation.

Operation details

FieldValue
NamecreateProjectResource
GroupProject Primitives
TypeMutation
SignaturecreateProjectResource(input: CreateProjectResourceInput!): ProjectResourceDocument!

Playground

Query

Query
mutation CreateProjectResource($input: CreateProjectResourceInput!) {
  createProjectResource(input: $input) {
    id
    title
    description
    editMode
    pattern
    source
  }
}

Variables

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