Meetings
The Meeting object can represent meeting in a Swapcard Event.
Object
Fetch first hundred Meetings
This query can be used to fetch the first 100 Meetings of an event.
Arguments
- eventId - This is string value of the Event Id.
Query
query MeetingsV2($eventId: ID!, $cursor: CursorPaginationInput!){
meetingsV2(eventId: $eventId, cursor: $cursor) {
nodes {
id
status
source
}
totalCount
pageInfo {
hasNextPage
hasPreviousPage
startCursor
endCursor
}
}
}
Variables
{
"eventId": "RXZlbnRfMQ==",
"cursor": {
"first": 100
}
}
Fetch the next hundred Meetings
This query can be used to fetch the next 100 Meetings.
Arguments
- eventId - This is string value of the Event Id.
Query
query MeetingsV2($eventId: ID!, $cursor: CursorPaginationInput!){
meetingsV2(eventId: $eventId, cursor: $cursor) {
nodes {
id
status
source
}
totalCount
pageInfo {
hasNextPage
hasPreviousPage
startCursor
endCursor
}
}
}
Variables
{
"eventId": "RXZlbnRfMQ==",
"cursor": {
"first": 100,
"after": "INSERT_CURSOR_ID_HERE"
}
}
Fetch Meetings by Ids
This query can be used to fetch the Meetings by Ids.
Arguments
ids
- The Ids of Meetings that need to searched. This is an array and can have multiple values separated by comma.
Query
query MeetingsV2($eventId: ID!, $filter: MeetingFilterInput!) {
meetingsV2(eventId: $eventId, filter: $filter) {
nodes {
id
source
}
totalCount
pageInfo {
hasNextPage
hasPreviousPage
startCursor
endCursor
}
}
}
Variables
{
"eventId": "RXZlbnRfNDY1Njc4",
"filter": {
"ids": [
"MeetingID1",
"MeetingID1"
]
}
}