EventNoteSetup
Defines the settings for notes for an event in EventsAir.
type EventNoteSetup {
noteTypes(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [EventNoteType!]!
}
Fields
EventNoteSetup.noteTypes
● [EventNoteType!]!
non-null object
A list of note types associated with this event.
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
).
EventNoteSetup.noteTypes.limit
● PaginationLimit!
non-null scalar
EventNoteSetup.noteTypes.offset
● NonNegativeInt!
non-null scalar
Member Of
EventSetup
object