ContactGroup
Defines a type for a contact group. This type is used to represent a group of contacts in an event.
type ContactGroup {
coordinator: Contact!
members(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [Contact!]!
name: String!
}
Fields
ContactGroup.coordinator
● Contact!
non-null object
The coordinator of the contact group.
ContactGroup.members
● [Contact!]!
non-null object
The members of the contact group.
ContactGroup.members.limit
● PaginationLimit!
non-null scalar
ContactGroup.members.offset
● NonNegativeInt!
non-null scalar
ContactGroup.name
● String!
non-null scalar
The name of the contact group.
Member Of
Contact
object