EditProjectNotesInput
InputAutogenerated input type of EditProjectNotes
mutation { organization(id: $organizationId) { editProjectNotes } }
Example
mutation EditProjectNotes(
$organizationId: ID!
$input: EditProjectNotesInput!
) {
organization(id: $organizationId) {
editProjectNotes(input: $input) {
project
errors
}
}
}