Skip to main content

Arguments

after : String
before : String
first : Int
isActive : Boolean

Filter by active status.

last : Int
name : String

Filter by call tag name.

Returns

CallTagConnectionTypeConnection!

Paginator of Call Tags

Allowed Viewers

Customer Partner User Third party

Required Permissions

Can query calls

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 CallTags( $after: String, $before: String, $first: Int, $isActive: Boolean, $last: Int, $name: String ) { callTags( after: $after, before: $before, first: $first, isActive: $isActive, last: $last, name: $name ) { edgeCount edges { ...CallTagConnectionTypeEdgeFragment } pageInfo { ...PageInfoFragment } totalCount } }

Variables

{ "after": "YXJyYXljb25uZWN0aW9uOjEw=", "before": "YXJyYXljb25uZWN0aW9uOjEw=", "first": 10, "isActive": true, "last": 10, "name": "our-think-stop-memory-would" }

Response

{ "data": { "callTags": { "edgeCount": 60, "edges": [CallTagConnectionTypeEdge], "pageInfo": PageInfo, "totalCount": 77 } } }