CheckOutOfEventInput
Defines the input for checking contacts out of an event.
If a contact is already checked out, only later check-out date-times will be taken into account.
input CheckOutOfEventInput {
contactIds: [ID!]!
dateTime: DateTime
eventId: ID!
}
Fields
CheckOutOfEventInput.contactIds
● [ID!]!
non-null scalar
The ID of the contacts to check out of the event.
The list must contain at least one element.
CheckOutOfEventInput.dateTime
● DateTime
scalar
The date and time at which to record the check-out. Optional.
When not specified, the current date and time will be used.
CheckOutOfEventInput.eventId
● ID!
non-null scalar
The ID of the event to check contacts out of.
Member Of
checkOutOfEvent
mutation