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