# Queries / Notifications

# Notifications

**Query**
## notifications — Returns [ConnectionType](/documentation/General/Connections) of [Notification](/documentation/Objects/Notification#Notification)

<p class="scopes"><span class="scope scope--none">No scope required</span></p>

### Sortable Fields
*Fields from [Notification](/documentation/Objects/Notification#Notification) that can be used to sort the connection items*

- createdAt

| Arguments | Type | Description |
| --- | --- | --- |
| register | [ID](/documentation/Types/UUID#UUID) | The register to get the notifications for |
| outlet | [ID](/documentation/Types/UUID#UUID) | The outlet to get the notifications for |

**Example Query**

```graphql
query GetNotifications($register: ID) {
    notifications(register: $register) {
        edges {
            node {
                id,
                data,
                readAt,
                createdAt,
                updatedAt
            }
        },
        pageInfo {
            hasNextPage,
            endCursor
        }
    }
}

# Example variables
{
    "register": "<REGISTER>"
}
```