Skip to main content

Booking

bookings

type Booking implements Node {
id: ID!
start: GQLTDate!
end: GQLTDate!
firstName: String
lastName: String
userName: String
password: String
active: Boolean!
forcedInActive: Boolean!
createdAt: GQLTDate!
updatedAt: GQLTDate!
roomId: ID
room: Room
isActive: Boolean
}

Fields#

id (ID!)#

The ID of an object

start (GQLTDate!)#

start date and time of the booking

end (GQLTDate!)#

end date and time of the booking

firstName (String)#

first name of the user to book

lastName (String)#

last name of the user to book

userName (String)#

username of the user to book

password (String)#

password of the user

active (Boolean!)#

shows if the book is still active or not

forcedInActive (Boolean!)#

forcedInActive column

createdAt (GQLTDate!)#

updatedAt (GQLTDate!)#

roomId (ID)#

The ID of an object

room (Room)#

isActive (Boolean)#

Interfaces#

Node#

An object with an ID