MeetingSchedule
A meeting schedule in EventsAir.
Meeting schedules define the available timeslots for meetings occurring at an event. An event can include multiple meeting schedules. For example, different schedules for different days of a multi-day conference.
type MeetingSchedule {
createdAt: DateTime!
createdBy: String
id: ID!
lastModifiedAt: DateTime!
lastModifiedBy: String
name: String!
timeSlots(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [MeetingScheduleTimeSlot!]!
uniqueCode: String
}
Fields
MeetingSchedule.createdAt ● DateTime! non-null scalar
The date and time the record was created.
MeetingSchedule.createdBy ● String scalar
UTF-8 string value that represents the username of the user who created the record. Optional.
MeetingSchedule.id ● ID! non-null scalar
The unique identifier for a meeting schedule.
MeetingSchedule.lastModifiedAt ● DateTime! non-null scalar
The date and time the record was last modified.
MeetingSchedule.lastModifiedBy ● String scalar
UTF-8 string value that represents the username of the user who last modified the record. Optional.
MeetingSchedule.name ● String! non-null scalar
The name of the meeting schedule.
MeetingSchedule.timeSlots ● [MeetingScheduleTimeSlot!]! non-null object
The time slots for this meeting schedule ordered by their date and start time.
Optionally, the offset and limit arguments can be used to page through multiple items:
offsetmust be a non-negative integer (defaults to0).limitmust be a positive integer from1to2000(defaults to100).
MeetingSchedule.timeSlots.limit ● PaginationLimit! non-null scalar
MeetingSchedule.timeSlots.offset ● NonNegativeInt! non-null scalar
MeetingSchedule.uniqueCode ● String scalar
A customer supplied, UTF-8 string value that represents a unique code for the event. Optional.
The value must be unique across all events for a tenant.
Member Of
Event object ● ExhibitionStandTypeMeetingSettings object ● RegistrationTypeMeetingSettings object