Skip to main content

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​

DEPRECATED

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:

  • offset must be a non-negative integer (defaults to 0).
  • limit must be a positive integer from 1 to 2000 (defaults to 100).
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:

  • offset must be a non-negative integer (defaults to 0).
  • limit must be a positive integer from 1 to 2000 (defaults to 100).

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