event
Get an event by its ID (Event.id).
Authorization is required; a request without credentials fails with an error.
Resolves to null if no event with the given ID exists, if the event is hosted by an organizer the
authenticated account is not connected to, or if the account is connected to no organizer at all.
Event IDs come from events or Company.events. For the storefront view of an event, use Shop.event,
which resolves a ShopEvent and needs no authorization.
Arguments
| Argument | Description | Type |
|---|---|---|
| id | ID! |
Type
This field resolves to Event, which has the following fields:
| Field | Description | Type |
|---|---|---|
canceledAt | Date | |
category | EventCategory | |
dates | [ Event! ]! | |
description | String | |
earliestStart | The start of the event or the earliest start of any of its dates. | Date |
hasSeatmaps | Whether this event has any seatmaps. | Boolean! |
host | The organizer of this event. | Host! |
id | ID! | |
image | Image | |
isDate | Boolean! | |
isHidingEndDate | If true, clients should not display the end date of the event. | Boolean |
isPrototype | Boolean! | |
label | String | |
latestEnd | The end of the event or the latest end of any of its dates. | Date |
name | String! | |
period | Period! | |
prototype | Event | |
salesStart | The date and time when tickets for the event become available for purchase. | Instant |
seatmap | Resolves to the `Seatmap` with the given ID for this event, or `null` if not found. | Seatmap |
seatmaps | All seatmaps for this event. | [ Seatmap! ]! |
shopUrl | Url | |
ticketTypes | Resolves to ticket types for this event that are available for sale in the `HOST_SHOP` channel. | [ TicketType! ]! |
venue | Venue |