Skip to main content

AgendaFolder

No description

type AgendaFolder {
createdAt: DateTime
creator: User
description: String
event: Event
id: ID!
isDefaultFolder: Boolean!
items(
after: String
before: String
first: Int
last: Int
): AgendaFolderItemsConnection
name: String
organization: Organization
sequence: Int
updatedAt: DateTime
updater: User
}

Fields

AgendaFolder.createdAt ● DateTime scalar

Date time at the time the agenda folder was created.

AgendaFolder.creator ● User object

User who created the agenda folder.

AgendaFolder.description ● String scalar

Custom information about the agenda folder.

AgendaFolder.event ● Event object

Event for which the agenda folder contains agenda items constituting a part of the agenda.

AgendaFolder.id ● ID! non-null scalar

Global identifier of the agenda folder.

AgendaFolder.isDefaultFolder ● Boolean! non-null scalar

Boolean to tell if agenda folder is default or not

AgendaFolder.items ● AgendaFolderItemsConnection object

GraphQL connection to traverse through the agenda items contained within the agenda folder.

AgendaFolder.items.after ● String scalar
AgendaFolder.items.before ● String scalar
AgendaFolder.items.first ● Int scalar
AgendaFolder.items.last ● Int scalar

AgendaFolder.name ● String scalar

Name of the agenda folder.

AgendaFolder.organization ● Organization object

Organization which the agenda folder belongs to.

AgendaFolder.sequence ● Int scalar

Sequence of agenda folder.

AgendaFolder.updatedAt ● DateTime scalar

Date time at the time the agenda folder was last updated.

AgendaFolder.updater ● User object

User who last updated the agenda folder.

Returned By

agendaFolder query ● agendaFoldersByEventId query ● createAgendaFolder mutation ● deleteAgendaFolder mutation ● updateAgendaFolder mutation

Member Of

AgendaItem object ● EventAgendaFoldersConnectionEdge object