DeleteProjectPayload
ObjectAutogenerated return type of DeleteProject.
mutation { organization(id: $organizationId) { deleteProject } }
Example
mutation DeleteProject(
$organizationId: ID!
$input: DeleteProjectInput!
) {
organization(id: $organizationId) {
deleteProject(input: $input) {
errors
}
}
}