Skip to main content

Notification

Minimal notification data for user interfaces.

type Notification {
body: String!
createdAt: DateTime
eventType: String
id: ID
isRead: Boolean
navigation: String
readAt: DateTime
title: String!
}

Fields

Notification.body ● String! non-null scalar

Notification message body.

Notification.createdAt ● DateTime scalar

When notification was created.

Notification.eventType ● String scalar

Type of event (for categorization).

Notification.id ● ID scalar

Unique notification identifier.

Notification.isRead ● Boolean scalar

Whether user has read this notification.

Notification.navigation ● String scalar

Route to navigate when notification is clicked.

Notification.readAt ● DateTime scalar

When user read this notification.

Notification.title ● String! non-null scalar

Notification title for display.

Member Of

User object