``` type Notification { id: ID! @unique sender...
# orm-help
t
Copy code
type Notification {
  id: ID! @unique
  sender: User! 
  receiver: User!
  relatesTo: ID
  type: NotificationTypes!
  content: String!
  isRead: Boolean!
  createdAt: DateTime!
}