Skip to main content

ExhibitionStandType

Represents a type of stand that exhibitors can book during the event.

type ExhibitionStandType {
createdAt: DateTime!
createdBy: String
customFields(
input: CustomFieldSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CustomField!]!
id: ID!
lastModifiedAt: DateTime!
lastModifiedBy: String
meetingSettings: ExhibitionStandTypeMeetingSettings
name: String!
price: ExhibitionStandPrice!
stands(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [ExhibitionStand!]!
uniqueCode: String
}

Fields

ExhibitionStandType.createdAt ● DateTime! non-null scalar

The date and time the record was created.

ExhibitionStandType.createdBy ● String scalar

UTF-8 string value that represents the username of the user who created the record. Optional.

ExhibitionStandType.customFields ● [CustomField!]! non-null object

A list of custom field values associated with this stand type.

CustomFields and CustomFieldDefinitions can be matched through the definitionId and id fields, respectively.

See CustomFieldSearchFilterInput for details on how the optional input argument can be used to filter custom fields.

Optionally, the offset and limit arguments can be used to page through multiple items:

  • offset must be a non-negative integer (defaults to 0).
  • limit must be a positive integer from 1 to 2000 (defaults to 100).
ExhibitionStandType.customFields.input ● CustomFieldSearchFilterInput! non-null input
ExhibitionStandType.customFields.limit ● PaginationLimit! non-null scalar
ExhibitionStandType.customFields.offset ● NonNegativeInt! non-null scalar

ExhibitionStandType.id ● ID! non-null scalar

The unique identifier for the exhibition stand type.

ExhibitionStandType.lastModifiedAt ● DateTime! non-null scalar

The date and time the record was last modified.

ExhibitionStandType.lastModifiedBy ● String scalar

UTF-8 string value that represents the username of the user who last modified the record. Optional.

ExhibitionStandType.meetingSettings ● ExhibitionStandTypeMeetingSettings object

The meeting settings associated with this exhibition stand type. Optional.

This will return null if the Meeting Diary feature is disabled for the exhibition stand type.

ExhibitionStandType.name ● String! non-null scalar

The name of the stand type.

ExhibitionStandType.price ● ExhibitionStandPrice! non-null object

The default price to book a stand of this type. Individual stands of this type can define specific prices.

ExhibitionStandType.stands ● [ExhibitionStand!]! non-null object

The stands of this stand type.

Optionally, the offset and limit arguments can be used to page through multiple items:

  • offset must be a non-negative integer (defaults to 0).
  • limit must be a positive integer from 1 to 2000 (defaults to 100).
ExhibitionStandType.stands.limit ● PaginationLimit! non-null scalar
ExhibitionStandType.stands.offset ● NonNegativeInt! non-null scalar

ExhibitionStandType.uniqueCode ● String scalar

The unique code for the stand type. Optional.

Member Of

ExhibitionBooking object ● ExhibitionSetup object ● ExhibitionStand object