AgendaItem
No description
type AgendaItem {
createdAt: DateTime
creator: User
description: String
duration: String
event: AgendaFolder
id: ID!
key: String
name: String
type: AgendaItemType
updatedAt: DateTime
updater: User
}
Fields
AgendaItem.createdAt ● DateTime scalar
Date time at the time the agenda item was last created.
AgendaItem.creator ● User object
User who created the agenda item.
AgendaItem.description ● String scalar
Custom information about the agenda item.
AgendaItem.duration ● String scalar
Duration of the agenda item.
AgendaItem.event ● AgendaFolder object
Agenda folder within which the agenda item in contained.
AgendaItem.id ● ID! non-null scalar
Global identifier of the agenda item.
AgendaItem.key ● String scalar
Key of the agenda item if it's of a "song" type. More information at this link.
AgendaItem.name ● String scalar
Name of the agenda item.
AgendaItem.type ● AgendaItemType enum
Type of the agenda item.
AgendaItem.updatedAt ● DateTime scalar
Date time at the time the agenda item was last updated.
AgendaItem.updater ● User object
User who last updated the agenda item.
Returned By
agendaItem query ● createAgendaItem mutation ● deleteAgendaItem mutation ● updateAgendaItem mutation