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