CreateProjectPayload
ObjectAutogenerated return type of CreateProject.
mutation { organization(id: $organizationId) { createProject } }
Example
mutation CreateProject(
$organizationId: ID!
$input: CreateProjectInput!
) {
organization(id: $organizationId) {
createProject(input: $input) {
errors
}
}
}