Skip to main content

Arguments

after : String
before : String
callId : ID! required

Identifier for the call, as an integer or a UUID.

first : Int
last : Int

Returns

CallTranscriptConnectionTypeConnection!

Paginator of Call Transcripts

Allowed Viewers

Customer Partner User Third party

Required Permissions

Can query call transcripts

Query Complexity

2

Examples

The example data in the variables and responses below are autogenerated values designed to resemble real inputs. They do not represent actual customer data, and in some cases may require additional validation.

Query

query CallTranscripts( $after: String, $before: String, $callId: ID!, $first: Int, $last: Int ) { callTranscripts( after: $after, before: $before, callId: $callId, first: $first, last: $last ) { edgeCount edges { ...CallTranscriptConnectionTypeEdgeFragment } pageInfo { ...PageInfoFragment } totalCount } }

Variables

{ "after": "YXJyYXljb25uZWN0aW9uOjEw=", "before": "YXJyYXljb25uZWN0aW9uOjEw=", "callId": "71029019", "first": 10, "last": 10 }

Response

{ "data": { "callTranscripts": { "edgeCount": 90, "edges": [CallTranscriptConnectionTypeEdge], "pageInfo": PageInfo, "totalCount": 42 } } }