Product
A product or a service related to an exhibitor.
type Product {
id: ID!
inputId: ID
name: String!
description: String
translations: [ProductTranslation!]!
imageUrl: String
assetsUrls: [String!]!
category: ProductCategory!
customFields: [FieldUnion!]!
exhibitors: [Exhibitor!]!
clientIds: [ID!]
withEvent(
eventId: ID!
): ProductWithEvent
createdAt: DateTime!
updatedAt: DateTime!
}
Fields
Product.id ● ID! non-null scalar
Product.inputId ● ID scalar
Product.name ● String! non-null scalar
Product.description ● String scalar
Product.translations ● [ProductTranslation!]! non-null object
Product.imageUrl ● String scalar
The main image of the product
Product.assetsUrls ● [String!]! non-null scalar
List all assets of the product
Product.category ● ProductCategory! non-null object
The category in which the product is
Product.customFields ● [FieldUnion!]! non-null union
Get custom field values for this product. For getting only fields enabled on an event, use withEvent.fields
Product.exhibitors ● [Exhibitor!]! non-null object
Exhibitors linked to products across the community. For event specific information, use withEvent.exhibitors.
Product.clientIds ● [ID!] list scalar
List of client IDs attached to the product.
Product.withEvent ● ProductWithEvent object
Product.withEvent.eventId●ID!non-null scalar
Product.createdAt ● DateTime! non-null scalar
Product.updatedAt ● DateTime! non-null scalar
Member Of
AdvertisementExhibitorRedirectProduct object ● CreateProductPayload object ● EventPerson object ● EventPersonWithEvent object ● ProductLead object ● ProductsConnection object ● UpdateProductPayload object ● UpdateProductsPayload object