Skip to main content

notifications

Description

No description


Response

Returns a PaginatedNotification


Arguments

NameDescription
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
}
}
}