tuist/projects/cloud/app/frontend/graphql/CreateProject.graphql

12 lines
168 B
GraphQL

mutation CreateProject($input: CreateProjectInput!) {
createProject(input: $input) {
project {
slug
}
errors {
message
path
}
}
}