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
| Argument | Description | Type |
|---|---|---|
| id | ID! |
Type
This field resolves to Seatmap, which has the following fields:
| Field | Description | Type |
|---|---|---|
bookable | SeatmapBookable | |
bookables | [ SeatmapBookable! ]! | |
categories | [ SeatmapCategory! ]! | |
category | SeatmapCategory | |
id | ID! | |
layout | SeatmapLayout! | |
name | String! | |
numberOfAvailableSeats | Int! | |
numberOfSeats | Int! | |
seat | SeatmapSeat | |
ticketTypes | Ticket types for this seatmap that are visible in the given `channel`. | [ TicketType ] |