MeetingDiary
Represents a meeting diary.
type MeetingDiary {
availableTimeSlots: [MeetingScheduleTimeSlot!]!
createdAt: DateTime!
createdBy: String
id: ID!
lastModifiedAt: DateTime!
lastModifiedBy: String
meetings(
input: ExhibitionBookingMeetingSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [ExhibitionBookingMeeting!]!
name: String!
}
Fields
MeetingDiary.availableTimeSlots
● [MeetingScheduleTimeSlot!]!
non-null object
The time slots in the meeting diary that are available to book meetings.
MeetingDiary.createdAt
● DateTime!
non-null scalar
The date and time the record was created.
MeetingDiary.createdBy
● String
scalar
UTF-8 string value that represents the username of the user who created the record. Optional.
MeetingDiary.id
● ID!
non-null scalar
The unique identifier for the meeting diary.
MeetingDiary.lastModifiedAt
● DateTime!
non-null scalar
The date and time the record was last modified.
MeetingDiary.lastModifiedBy
● String
scalar
UTF-8 string value that represents the username of the user who last modified the record. Optional.
MeetingDiary.meetings
● [ExhibitionBookingMeeting!]!
non-null interface
The meetings associated with this meeting diary.
See ExhibitionBookingMeetingSearchFilterInput
for details on how the optional input
argument can be used to filter exhibition booking meetings.
Optionally, the offset
and limit
arguments can be used to page through multiple items:
offset
must be a non-negative integer (defaults to0
).limit
must be a positive integer from1
to2000
(defaults to100
).
MeetingDiary.meetings.input
● ExhibitionBookingMeetingSearchFilterInput!
non-null input
MeetingDiary.meetings.limit
● PaginationLimit!
non-null scalar
MeetingDiary.meetings.offset
● NonNegativeInt!
non-null scalar
MeetingDiary.name
● String!
non-null scalar
The name of the meeting diary.
Member Of
ExhibitionBooking
object ● RegistrationWithExhibitionBookingMeeting
object