EventNoteType
Defines the type for a note within the scope of an event.
type EventNoteType {
associatedNoteTypeId: ID
createdAt: DateTime!
createdBy: String
customFields(
input: CustomFieldSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CustomField!]!
id: ID!
lastModifiedAt: DateTime!
lastModifiedBy: String
name: String!
notes(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [EventNote!]!
uniqueCode: String
}
Fields
EventNoteType.associatedNoteTypeId
● ID
scalar
The identifier of the associated note type in an associated contact store, continuing education contact store or membership contact store. Optional.
EventNoteType.createdAt
● DateTime!
non-null scalar
The date and time the record was created.
EventNoteType.createdBy
● String
scalar
UTF-8 string value that represents the username of the user who created the record. Optional.
EventNoteType.customFields
● [CustomField!]!
non-null object
A list of custom field values associated with this note type.
CustomField
s and CustomFieldDefinition
s 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 to0
).limit
must be a positive integer from1
to2000
(defaults to100
).
EventNoteType.customFields.input
● CustomFieldSearchFilterInput!
non-null input
EventNoteType.customFields.limit
● PaginationLimit!
non-null scalar
EventNoteType.customFields.offset
● NonNegativeInt!
non-null scalar
EventNoteType.id
● ID!
non-null scalar
The unique identifier for the note type.
EventNoteType.lastModifiedAt
● DateTime!
non-null scalar
The date and time the record was last modified.
EventNoteType.lastModifiedBy
● String
scalar
UTF-8 string value that represents the username of the user who last modified the record. Optional.
EventNoteType.name
● String!
non-null scalar
A UTF-8 string representing the name of the note type.
EventNoteType.notes
● [EventNote!]!
non-null object
A list of notes for this note type.
Optionally, the offset
and limit
arguments can be used to page through multiple items:
offset
must be a non-negative integer (defaults to0
).limit
must be a positive integer from1
to2000
(defaults to100
).
EventNoteType.notes.limit
● PaginationLimit!
non-null scalar
EventNoteType.notes.offset
● NonNegativeInt!
non-null scalar
EventNoteType.uniqueCode
● String
scalar
A customer supplied, UTF-8 string value that represents a unique code for the note type. Optional.
The value must be unique across all note types for an event.
Member Of
EventNote
object ● EventNoteSetup
object