Skip to content

notes

Fetch paginated Note collection for given conversation

Arguments

org_chat · Boolean · If TRUE: get base user as a conversation owner
with_tasks · Boolean · If TRUE: get notes with tasks
after · String · Returns the elements in the list that come after the specified cursor.
before · String · Returns the elements in the list that come before the specified cursor.
first · Int · Returns the first _n_ elements from the list.
last · Int · Returns the last _n_ elements from the list.

Returns

NotePaginationConnection

Example

query notes(
$conversation_id: ID
$ids: [ID]
$keywords: String
$org_chat: Boolean
$provider_id: ID
$scheduled_notes: Boolean
$since_note_id: ID
$sort_by: String
$order_by: NoteOrderKeys
$with_tasks: Boolean
$after: String
$before: String
$first: Int
$last: Int
) {
notes(
conversation_id: $conversation_id
ids: $ids
keywords: $keywords
org_chat: $org_chat
provider_id: $provider_id
scheduled_notes: $scheduled_notes
since_note_id: $since_note_id
sort_by: $sort_by
order_by: $order_by
with_tasks: $with_tasks
after: $after
before: $before
first: $first
last: $last
) {
edges
nodes
page_info
total_count
}
}