Eventjet GraphQL API documentation

seatmap

Get a seatmap by its ID (Seatmap.id).

A Seatmap is the seating plan of a specific event, so it carries live information: the seats still available via Seatmap.numberOfAvailableSeats, what can be booked via Seatmap.bookables, and the ticket types on sale for it via Seatmap.ticketTypes.

Resolves to null if no seatmap with the given ID exists. No authorization is required.

Seatmap IDs come from Event.seatmaps, ShopEvent.seatmaps or SeatmapSeat.seatmap; Event.seatmap performs the same lookup restricted to a single event. For the reusable venue layout a seatmap is built from, see seatmapScheme.

Arguments

ArgumentDescriptionType
idID!

Type

This field resolves to Seatmap, which has the following fields:

FieldDescriptionType
bookableSeatmapBookable
bookables[ SeatmapBookable! ]!
categories[ SeatmapCategory! ]!
categorySeatmapCategory
idID!
layoutSeatmapLayout!
nameString!
numberOfAvailableSeatsInt!
numberOfSeatsInt!
seatSeatmapSeat
ticketTypesTicket types for this seatmap that are visible in the given `channel`.[ TicketType ]