Skip to main content

MutationCreateAgendaItemInput

Input type for creating a new agenda item.

input MutationCreateAgendaItemInput {
attachments: [AgendaItemAttachmentInput!]
categoryId: ID
description: String
duration: String
eventId: ID!
folderId: ID
key: String
name: String!
notes: String
sequence: Int!
type: AgendaItemType!
url: [AgendaItemUrlInput!]
}

Fields

MutationCreateAgendaItemInput.attachments ● [AgendaItemAttachmentInput!] list input

Attachments for the agenda items.

MutationCreateAgendaItemInput.categoryId ● ID scalar

Category id

MutationCreateAgendaItemInput.description ● String scalar

Custom information about the agenda item.

MutationCreateAgendaItemInput.duration ● String scalar

Duration of the agenda item.

MutationCreateAgendaItemInput.eventId ● ID! non-null scalar

Global identifier of the event the agenda item is associated to.

MutationCreateAgendaItemInput.folderId ● ID scalar

Global identifier of the agenda folder the agenda item is associated to.

MutationCreateAgendaItemInput.key ● String scalar

Key of the agenda item if it's of a "song" type. More information at this link.

MutationCreateAgendaItemInput.name ● String! non-null scalar

Name of the agenda item.

MutationCreateAgendaItemInput.notes ● String scalar

Notes for the agenda item

MutationCreateAgendaItemInput.sequence ● Int! non-null scalar

Sequence of the AgendaItem.

MutationCreateAgendaItemInput.type ● AgendaItemType! non-null enum

Type of the agenda item.

MutationCreateAgendaItemInput.url ● [AgendaItemUrlInput!] list input

URLs associated with the agenda item.

Member Of

createAgendaItem mutation