notifications
Description
No description
Response
Returns a PaginatedNotification
Arguments
Name | Description |
---|---|
after - String | |
limit - Int! | |
verb - NotificationVerb |
Query
query notifications(
$after: String,
$limit: Int!,
$verb: NotificationVerb
) {
notifications(
after: $after,
limit: $limit,
verb: $verb
) {
totalCount
}
}
Variables
{
"after": "xyz789",
"limit": 123,
"verb": "COMMENT_CREATED"
}
Response
{
"data": {
"notifications": {
"edges": [
"NotificationEdge"
],
"nodes": [
"Notification"
],
"pageInfo": "PageInfo",
"totalCount": 123
}
}
}