Skip to main content

EventGroup

Event Groups are a way to group events into logical collections. Event Groups can define different types of events or meetings (a group of events that are managed for a particular client, workshop series, sales meetings, etc.).

Some examples of Event Groups could include:

  • Technology Conferences
  • Sales Meetings
  • Education Series
  • Southwest Regional Meetings
  • ACME Corporation Meetings
type EventGroup {
createdAt: DateTime!
createdBy: String
id: ID!
lastModifiedAt: DateTime!
lastModifiedBy: String
name: String!
uniqueCode: String
}

Fields

EventGroup.createdAt ● DateTime! non-null scalar

The date and time the record was created.

EventGroup.createdBy ● String scalar

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

EventGroup.id ● ID! non-null scalar

The unique identifier for an event group.

EventGroup.lastModifiedAt ● DateTime! non-null scalar

The date and time the record was last modified.

EventGroup.lastModifiedBy ● String scalar

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

EventGroup.name ● String! non-null scalar

UTF-8 string value that represents the name of the event group.

EventGroup.uniqueCode ● String scalar

A customer supplied, UTF-8 string value that represents a unique code for the event group. Optional.

The value must be unique across all event groups for a tenant.

Member Of

Event object