inkLiveChatConversations
Returns a list of paginated conversations associated with the user.
Arguments
Returns
InkConversationsConnection!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 InkLiveChatConversations(
$after: String,
$before: String,
$first: Int,
$last: Int,
$status: String
) {
inkLiveChatConversations(
after: $after,
before: $before,
first: $first,
last: $last,
status: $status
) {
edges {
...InkConversationsEdgeFragment
}
pageInfo {
...PageInfoFragment
}
}
}
Variables
{
"after": "YXJyYXljb25uZWN0aW9uOjEw=",
"before": "YXJyYXljb25uZWN0aW9uOjEw=",
"first": 10,
"last": 10,
"status": "tend-hard-benefit-black-trade"
}
Response
{
"data": {
"inkLiveChatConversations": {
"edges": [InkConversationsEdge],
"pageInfo": PageInfo
}
}
}