Skip to content

userNotifications

An object containing production notifications information for the current user.

Returns

UserNotifications!

Sample

query {
  userNotifications {
    id
    unreadCount
  }
}
{}
{
  "data": {
    "userNotifications": {
      "id": "example-string",
      "unreadCount": 0
    }
  }
}