ContactStoreNoteSetup
Defines the settings for notes for a contact store in EventsAir.
type ContactStoreNoteSetup {
noteTypes(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [ContactStoreNoteType!]! @deprecated
noteTypesPaged(
filterInput: NoteTypeAdvancedSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): ContactStoreNoteTypePage!
}
Fields
ContactStoreNoteSetup.noteTypes ● [ContactStoreNoteType!]! 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 contact store.
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).
ContactStoreNoteSetup.noteTypes.limit ● PaginationLimit! non-null scalar
ContactStoreNoteSetup.noteTypes.offset ● NonNegativeInt! non-null scalar
ContactStoreNoteSetup.noteTypesPaged ● ContactStoreNoteTypePage! non-null object
Note types associated with this contact store that match the filter criteria specified in the
optional filterInput argument, returned together with pagination metadata.
Returns a ContactStoreNoteTypePage 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.
ContactStoreNoteSetup.noteTypesPaged.filterInput ● NoteTypeAdvancedSearchFilterInput! non-null input
ContactStoreNoteSetup.noteTypesPaged.limit ● PaginationLimit! non-null scalar
ContactStoreNoteSetup.noteTypesPaged.offset ● NonNegativeInt! non-null scalar
Member Of
ContactStoreSetup object