UnhideProjectPayload
ObjectAutogenerated return type of UnhideProject.
mutation { organization(id: $organizationId) { unhideProject } }
Example
mutation UnhideProject(
$organizationId: ID!
$input: UnhideProjectInput!
) {
organization(id: $organizationId) {
unhideProject(input: $input) {
project
errors
}
}
}