The types below are used by the notetaker meetings query and related fields. They are not independently queryable at the root.
Paginated list of meetings and pagination metadata.
Filters applied when listing meetings.
| Field | Type | Description |
|---|
ids | [ID!] | Restrict results to specific meeting IDs. |
search | String | Filter by search text. |
access | MeetingAccessFilter | Filter by how the meeting is shared or owned relative to the current user. |
Enum describing how the current user accesses a meeting (field Meeting.access_type).
| Value | Description |
|---|
OWN | Meeting owned by the user. |
SHARED_WITH_ME | Shared directly with the user. |
SHARED_WITH_ACCOUNT | Shared at the account level. |
Enum used in MeetingsFilterInput.access when listing meetings.
| Value | Description |
|---|
OWN | Only meetings the user owns. |
SHARED_WITH_ME | Only meetings shared with the user. |
SHARED_WITH_ACCOUNT | Only meetings shared with the account. |
ALL | All meetings the user can access (no access-level filter). |
| Field | Type | Description |
|---|
content | String | Action item text. |
is_completed | Boolean | Whether the action item is done. |
owner | String | Owner name or identifier, if set. |
due_date | String | Due date, if set. |
| Field | Type | Description |
|---|
title | String | Topic title. |
talking_points | [TalkingPoint] | Bullet-style points under the topic. |
| Field | Type | Description |
|---|
content | String | Talking point text. |
TalkingPoint does not expose a start_time field — only content (confirmed via API testing).
| Field | Type | Description |
|---|
text | String | Transcript segment text. |
start_time | Float | Segment start time. |
end_time | Float | Segment end time. |
speaker | String | Speaker label or name. |
language | String | Language code or label for the segment. |
| Field | Type | Description |
|---|
email | String | Participant email. |
Cursor pagination metadata returned with MeetingsResponse.
| Field | Type | Description |
|---|
has_next_page | Boolean | Whether another page exists after this one. |
cursor | String | Cursor to pass as cursor on the next request. |