AddMeetingSubItemPayload
ObjectAutogenerated return type of AddMeetingSubItem.
mutation { organization(id: $organizationId) { project(id: $projectId) { addMeetingSubItem } } }
Example
mutation AddMeetingSubItem(
$organizationId: ID!
$projectId: ID!
$input: AddMeetingSubItemInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
addMeetingSubItem(input: $input) {
meetingSubItem
errors
}
}
}
}Fields
| Field | Type | Description |
|---|---|---|
| clientMutationId | String | A unique identifier for the client performing the mutation. |
| constructableUrl | String | — |
| errors | [String!]! | — |
| meetingSubItem | MeetingSubItem | — |