userAnalyzerAccess
No description available.
Arguments
| Argument |
Type |
Description |
| userId (required) |
String! |
|
| startDay (required) |
String! |
Start time, in string format (YYYY-MM-DD). |
| timezone (required) |
String! |
|
| limit (required) |
Int! |
Maximum number of entries in the response. |
Returns
AnalyzerAccessUsageConnection!
Sample
query UserAnalyzerAccess($userId: String!, $startDay: String!, $timezone: String!, $limit: Int!) {
userAnalyzerAccess(
userId: $userId
startDay: $startDay
timezone: $timezone
limit: $limit
) {
nodes {
count
countDelta
}
pageInfo {
hasNextPage
endCursor
}
}
}
{
"userId": "example-string",
"startDay": "example-string",
"timezone": "example-string",
"limit": 0
}
{
"data": {
"userAnalyzerAccess": {
"nodes": [
[
{
"count": 0,
"countDelta": 0
}
]
],
"pageInfo": {
"endCursor": "example-string",
"hasNextPage": true,
"hasPreviousPage": true,
"startCursor": "example-string"
}
}
}
}