EventNoteSetup
Defines the settings for notes for an event in EventsAir.
type EventNoteSetup {
noteTypes(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [EventNoteType!]! @deprecated
noteTypesPaged(
filterInput: NoteTypeAdvancedSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): EventNoteTypePage!
}
Fields
EventNoteSetup.noteTypes ● [EventNoteType!]! deprecated non-null object
Use noteTypesPaged instead. It returns the same note types together with pagination metadata (total count, has-next-page) and exposes a richer filter input supporting both inclusion and exclusion semantics (eq, ne, in, notIn). This field will be removed in a future release.
A list of note types associated with this event.
Optionally, the offset and limit arguments can be used to page through multiple items:
offsetmust be a non-negative integer (defaults to0).limitmust be a positive integer from1to2000(defaults to100).
EventNoteSetup.noteTypes.limit ● PaginationLimit! non-null scalar
EventNoteSetup.noteTypes.offset ● NonNegativeInt! non-null scalar
EventNoteSetup.noteTypesPaged ● EventNoteTypePage! non-null object
Note types associated with this event that match the filter criteria specified in the optional
filterInput argument, returned together with pagination metadata.
Returns an EventNoteTypePage wrapper exposing the matched items alongside pageInfo (total
count, has-next-page, has-previous-page).
See NoteTypeAdvancedSearchFilterInput
for details on how the filterInput argument can be used. The filter supports both inclusion and
exclusion semantics (eq, ne, in, notIn) — for example, "all note types whose name does
not contain dietary."
Optionally, the offset and limit arguments can be used to page through multiple items:
offsetmust be a non-negative integer (defaults to0).limitmust be a positive integer from1to2000(defaults to100).
Throws an error with code: BAD_USER_INPUT if all fields in the filterInput argument have a
combined total number of values exceeding 1,000.
EventNoteSetup.noteTypesPaged.filterInput ● NoteTypeAdvancedSearchFilterInput! non-null input
EventNoteSetup.noteTypesPaged.limit ● PaginationLimit! non-null scalar
EventNoteSetup.noteTypesPaged.offset ● NonNegativeInt! non-null scalar
Member Of
EventSetup object