Skip to main content

EventAgenda

Represents an event agenda.

type EventAgenda {
items(
input: EventAgendaItemSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [EventAgendaItem!]!
itemsByDate(
input: FindEventAgendaItemsByDateInput!
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [EventAgendaItem!]!
itemsByTypes(
input: FindEventAgendaItemsByTypesInput!
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [EventAgendaItem!]!
}

Fields​

EventAgenda.items ● [EventAgendaItem!]! non-null interface​

A list of agenda items ordered by date (ascending), then by start time (ascending). Only items that have been allocated date and time information in the agenda will be returned.

See EventAgendaItemSearchFilterInput for details on how the optional input argument can be used to filter agenda items.

Optionally, the offset and limit arguments can be used to page through multiple items:

  • offset must be a non-negative integer (defaults to 0).
  • limit must be a positive integer from 1 to 2000 (defaults to 100).
EventAgenda.items.input ● EventAgendaItemSearchFilterInput! non-null input​
EventAgenda.items.limit ● PaginationLimit! non-null scalar​
EventAgenda.items.offset ● NonNegativeInt! non-null scalar​

EventAgenda.itemsByDate ● [EventAgendaItem!]! non-null interface​

Retrieves agenda items that match the specified date in the input argument. Results are ordered by start time (ascending).

Optionally, the offset and limit arguments can be used to page through multiple items:

  • offset must be a non-negative integer (defaults to 0).
  • limit must be a positive integer from 1 to 2000 (defaults to 100).
EventAgenda.itemsByDate.input ● FindEventAgendaItemsByDateInput! non-null input​
EventAgenda.itemsByDate.limit ● PaginationLimit! non-null scalar​
EventAgenda.itemsByDate.offset ● NonNegativeInt! non-null scalar​

EventAgenda.itemsByTypes ● [EventAgendaItem!]! non-null interface​

Retrieves agenda items that match the specified types in the input argument. Results are ordered by type (ascending), date (ascending), then by start time (ascending).

Optionally, the offset and limit arguments can be used to page through multiple items:

  • offset must be a non-negative integer (defaults to 0).
  • limit must be a positive integer from 1 to 2000 (defaults to 100).
EventAgenda.itemsByTypes.input ● FindEventAgendaItemsByTypesInput! non-null input​
EventAgenda.itemsByTypes.limit ● PaginationLimit! non-null scalar​
EventAgenda.itemsByTypes.offset ● NonNegativeInt! non-null scalar​

Member Of​

Event object