SetProjectLiveInput
InputAutogenerated input type of SetProjectLive
mutation { organization(id: $organizationId) { setProjectLive } }
Example
mutation SetProjectLive(
$organizationId: ID!
$input: SetProjectLiveInput!
) {
organization(id: $organizationId) {
setProjectLive(input: $input) {
project
errors
}
}
}