Skip to main content

CheckInStatus

Represents the check-in status of a user for an event.

type CheckInStatus {
checkInTime: Date
checkOutTime: Date
id: ID!
isCheckedIn: Boolean!
isCheckedOut: Boolean!
user: User!
}

Fields

CheckInStatus.checkInTime ● Date scalar

Date and time when the user checked in.

CheckInStatus.checkOutTime ● Date scalar

Date and time when the user checked out.

CheckInStatus.id ● ID! non-null scalar

Global identifier of the check-in status record.

CheckInStatus.isCheckedIn ● Boolean! non-null scalar

Whether the user is currently checked in.

CheckInStatus.isCheckedOut ● Boolean! non-null scalar

Whether the user has checked out.

CheckInStatus.user ● User! non-null object

The user associated with this check-in status.

Member Of

Event object