Venue
No description
type Venue {
attachments: [VenueAttachment!]
capacity: Int
createdAt: DateTime
creator: User
description: String
events(
after: String
before: String
first: Int
last: Int
): VenueEventsConnection
id: ID!
name: String
organization: Organization
updatedAt: DateTime
updater: User
}
Fields
Venue.attachments ● [VenueAttachment!] list object
Array of attachments.
Venue.capacity ● Int scalar
Capacity of the venue.
Venue.createdAt ● DateTime scalar
Date time at the time the venue was created.
Venue.creator ● User object
User who created the venue.
Venue.description ● String scalar
Custom information about the venue.
Venue.events ● VenueEventsConnection object
GraphQL connection to traverse through the events the venue has been booked for.
Venue.events.after ● String scalar
Venue.events.before ● String scalar
Venue.events.first ● Int scalar
Venue.events.last ● Int scalar
Venue.id ● ID! non-null scalar
Global identifier of the venue.
Venue.name ● String scalar
Name of the venue.
Venue.organization ● Organization object
Organization the venue belongs to.
Venue.updatedAt ● DateTime scalar
Date time at the time the venue was last updated.
Venue.updater ● User object
User who last updated the venue.
Returned By
createVenue mutation ● createVenueBooking mutation ● deleteVenue mutation ● deleteVenueBooking mutation ● updateVenue mutation ● venue query
Member Of
EventVenuesConnectionEdge object ● OrganizationVenuesConnectionEdge object