callTranscriptsInWindow
Get all completed transcripts whose transcribed_at falls within a time window.
Arguments
Only transcripts where transcribed_at is at or after this datetime.
Only transcripts where transcribed_at is at or before this datetime. Defaults to the current time when omitted.
Possible Errors
Allowed Viewers
Required Permissions
Can query call transcriptsQuery Complexity
6Examples
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 CallTranscriptsInWindow(
$after: String,
$before: String,
$first: Int,
$last: Int,
$transcribedAfter: DateTime!,
$transcribedBefore: DateTime
) {
callTranscriptsInWindow(
after: $after,
before: $before,
first: $first,
last: $last,
transcribedAfter: $transcribedAfter,
transcribedBefore: $transcribedBefore
) {
edgeCount
edges {
...CallTranscriptConnectionTypeEdgeFragment
}
pageInfo {
...PageInfoFragment
}
totalCount
}
}
Variables
{
"after": "YXJyYXljb25uZWN0aW9uOjEw=",
"before": "YXJyYXljb25uZWN0aW9uOjEw=",
"first": 10,
"last": 10,
"transcribedAfter": "1985-01-30T08:03:18.544784+00:00",
"transcribedBefore": "1975-06-16T08:22:40.811133+00:00"
}
Response
{
"data": {
"callTranscriptsInWindow": {
"edgeCount": 49,
"edges": [CallTranscriptConnectionTypeEdge],
"pageInfo": PageInfo,
"totalCount": 71
}
}
}