Skip to main content

NoteFiltersInput

The NoteFilterInput object is used to filter the results of the Notes query. Each field corresponds to a specific attribute in the notes and is optional. If a field is provided, the query will return only the notes that match the provided value for that field.

FieldTypeDescription
keywordStringKeyword to filter the notes by.
author_idIDID of the author of the note.
start_dateDateTimeStart date for filtering the notes. Only notes created after this date will be returned.
end_dateDateTimeEnd date for filtering the notes. Only notes created before this date will be returned.
sort_typeEnumSort type for the notes.
sort_fieldEnumField to sort the notes by.
input NoteFiltersInput {
authorId: ID
endDate: ISO8601DateTime
keyword: String
sortType: SortTypeEnum
startDate: ISO8601DateTime
}

Fields

NoteFiltersInput.authorId ● ID scalar common

Filter by author. This field corresponds to the author of the note.

NoteFiltersInput.endDate ● ISO8601DateTime scalar common

Filter by end_date. This field is used to filter the notes by the date and time they were created. Only notes created before the end_date will be returned.

NoteFiltersInput.keyword ● String scalar common

Filter by keyword. This field is used to filter the notes by the content of the note.

NoteFiltersInput.sortType ● SortTypeEnum enum common

Sort type for the notes.

NoteFiltersInput.startDate ● ISO8601DateTime scalar common

Filter by start_date. This field is used to filter the notes by the date and time they were created. Only notes created after the start_date will be returned.

Member Of

notes query