Skip to main content

CheckIntoEventInput

Defines the input for checking contacts into an event.

If a contact is already checked in, only earlier check-in date-times will be taken into account.

input CheckIntoEventInput {
contactIds: [ID!]!
dateTime: DateTime
eventId: ID!
}

Fields

CheckIntoEventInput.contactIds ● [ID!]! non-null scalar

The ID of the contacts to check into the event.

The list must contain at least one element.

CheckIntoEventInput.dateTime ● DateTime scalar

The date and time at which to record the check-in. Optional.

When not specified, the current date and time will be used.

CheckIntoEventInput.eventId ● ID! non-null scalar

The ID of the event to check contacts into.

Member Of

checkIntoEvent mutation