SetEntitySubscriptionPayload
ObjectAutogenerated return type of SetEntitySubscription.
mutation { organization(id: $organizationId) { project(id: $projectId) { setEntitySubscription } } }
Example
mutation SetEntitySubscription(
$organizationId: ID!
$projectId: ID!
$input: SetEntitySubscriptionInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
setEntitySubscription(input: $input) {
errors
}
}
}
}