Skip to main content

CheckIntoSessionInput

Defines the input for checking contacts into a session.

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

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

Fields

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

The ID of the contacts to check into the function.

The list must contain at least one element.

CheckIntoSessionInput.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.

CheckIntoSessionInput.eventId ● ID! non-null scalar

The ID of the event that is associated with the session to check contacts into.

CheckIntoSessionInput.sessionId ● ID! non-null scalar

The ID of the session to check contacts into.

Member Of

checkIntoSession mutation