Agenda Sessions Query

Agenda Sessions are individual items in an event's schedule. Agenda Sessions may be “bookmarked” by an attendee to be placed on their personal schedule. Those Bookmarked Agenda Sessions may be accessed as part of the attendee record.

Arguments

gatheringId

gatheringId: (Int!)

filters

filters: (Filter) {

}

CURL Request

curl -X POST https://api.certaintouchpoint.com/graphql -H 'Content-Type: application/graphql' -H 'Authorization: Bearer abcyourauthenticationtoken123' -d '{agendaSessions(gatheringId: 232) {name startsAt endsAt}}'

Nested Relationships

To request relationships, include the nested relationships and the associated attributes. This query will return the name, id, and externalId for each agenda session as well as related links and speakers associated with the agenda session, including the id, name, and url for those sessions.

Query Example

curl -X POST https://api.certaintouchpoint.com/graphql -H 'Content-Type: application/graphql' -H 'Authorization: Bearer abcyourauthenticationtoken123' -d '{ agendaSessions(gatheringId: 232) { name startsAt id externalId relatedLinks { id name url }}}'

AgendaSessionParams

Attributes