Sessions count
Overview
The get_sessions_count function provides a simple session count summary with additional metadata. Use this endpoint to:
- Get quick session totals for overview dashboards
- Retrieve session counts with meaningful/non-meaningful breakdown
- Build high-level analytics summaries
Quick start
query GetSessionsCount(
$accountId: uuid!
$deskIds: _uuid
$brainIds: _uuid
$startDate: timestamp
$endDate: timestamp
$isTest: Boolean
) {
rows: get_sessions_count(
args: {
account_id: $accountId
desk_ids: $deskIds
brain_parent_ids: $brainIds
start_time: $startDate
end_time: $endDate
is_test: $isTest
}
) {
total_sessions
meaningful_sessions
non_meaningful_sessions
}
}
Variables:
{
"accountId": "991c12a1-cc58-4377-8e37-f72259e9dac1",
"startDate": "2024-01-08",
"endDate": "2024-01-17"
}
Parameters
| Parameter | Type | Description |
|---|---|---|
accountId | uuid! | Account identifier (required) |
deskIds | _uuid | Filter by desk IDs |
brainIds | _uuid | Filter by AI agent IDs |
startDate | timestamp | Start date (format: yyyy-mm-dd) |
endDate | timestamp | End date (format: yyyy-mm-dd) |
isTest | Boolean | Exclude test sessions |
Response fields
| Field | Type | Description |
|---|---|---|
total_sessions | Int | Total number of sessions |
meaningful_sessions | Int | Sessions with meaningful conversations |
non_meaningful_sessions | Int | Sessions without meaningful conversations |
Common use cases
Try it
Loading GraphQL Playground...
- Account total
- Specific desk
- Production only
Get session count for an account:
{
"accountId": "991c12a1-cc58-4377-8e37-f72259e9dac1",
"startDate": "2024-01-08",
"endDate": "2024-01-17"
}
Get session count for a specific desk:
{
"accountId": "991c12a1-cc58-4377-8e37-f72259e9dac1",
"deskIds": "{d2be0283-9b53-4d7b-b77d-2650f3a1a99c}",
"startDate": "2024-01-08",
"endDate": "2024-01-17"
}
Exclude test sessions:
{
"accountId": "991c12a1-cc58-4377-8e37-f72259e9dac1",
"isTest": false,
"startDate": "2024-01-08",
"endDate": "2024-01-17"
}
Example response
{
"data": {
"rows": [
{
"total_sessions": 12500,
"meaningful_sessions": 9875,
"non_meaningful_sessions": 2625
}
]
}
}