EditProjectInfoPayload
ObjectAutogenerated return type of EditProjectInfo.
mutation { organization(id: $organizationId) { editProjectInfo } }
Example
mutation EditProjectInfo(
$organizationId: ID!
$input: EditProjectInfoInput!
) {
organization(id: $organizationId) {
editProjectInfo(input: $input) {
project
errors
}
}
}