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.
| Field | Type | Description |
|---|---|---|
keyword | String | Keyword to filter the notes by. |
author_id | ID | ID of the author of the note. |
start_date | DateTime | Start date for filtering the notes. Only notes created after this date will be returned. |
end_date | DateTime | End date for filtering the notes. Only notes created before this date will be returned. |
sort_type | Enum | Sort type for the notes. |
sort_field | Enum | Field 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