Skip to main content

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 OR operator.
  • If specifying multiple fields to filter on (for example both ids and names), fields are applied using an AND operator.
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