EventAttendee
No description
type EventAttendee {
checkinTime: Date
checkoutTime: Date
createdAt: DateTime!
event: Event
feedbackSubmitted: Boolean!
id: ID!
isCheckedIn: Boolean!
isCheckedOut: Boolean!
isInvited: Boolean!
isRegistered: Boolean!
updatedAt: DateTime
user: User!
}
Fields
EventAttendee.checkinTime ● Date scalar
Date and time when the attendee checked in to the event.
EventAttendee.checkoutTime ● Date scalar
Date and time when the attendee checked out from the event.
EventAttendee.createdAt ● DateTime! non-null scalar
Date time when the event attendee record was created.
EventAttendee.event ● Event object
The event the attendee is associated with.
EventAttendee.feedbackSubmitted ● Boolean! non-null scalar
Indicates if the attendee has submitted feedback for the event.
EventAttendee.id ● ID! non-null scalar
Global identifier of the event attendee.
EventAttendee.isCheckedIn ● Boolean! non-null scalar
Indicates if the attendee has checked in to the event.
EventAttendee.isCheckedOut ● Boolean! non-null scalar
Indicates if the attendee has checked out from the event.
EventAttendee.isInvited ● Boolean! non-null scalar
Indicates if the attendee is invited to the event.
EventAttendee.isRegistered ● Boolean! non-null scalar
Indicates if the attendee is registered for the event.
EventAttendee.updatedAt ● DateTime scalar
Date time when the event attendee record was last updated.
EventAttendee.user ● User! non-null object
The user attending the event.
Returned By
checkIn mutation ● checkOut mutation ● getEventAttendee query ● getEventAttendeesByEventId query ● getEventInvitesByUserId query ● inviteEventAttendee mutation ● registerEventAttendee mutation ● registerForEvent mutation