NoteTypeSearchFilterInput
Defines the note type filter criteria used when searching for notes in EventsAir.
The following rules apply:
- Where a field accepts a list of values as a filter, those values are applied using an
ORoperator. - If specifying multiple fields to filter on (for example both
idsandnames), fields are applied using anANDoperator.
input NoteTypeSearchFilterInput {
ids: [String!]
names: [String!]
uniqueCodes: [String!]
}
Fields
NoteTypeSearchFilterInput.ids ● [String!] list scalar
Filter notes based on their type identifiers. Optional.
NoteTypeSearchFilterInput.names ● [String!] list scalar
Filter notes based on their type names. Optional.
NoteTypeSearchFilterInput.uniqueCodes ● [String!] list scalar
Filter notes based on their type unique codes. Optional.
Member Of
NoteSearchFilterInput input