User
A user.
type User implements Node {
id: UUID!
notifications(
first: Int
orderBy: NotificationOrderInput
skip: Int
): NotificationConnection!
}
Fields
User.id ● UUID! non-null scalar
The ID of the node.
User.notifications ● NotificationConnection! non-null object
Get all notifications the user received
User.notifications.first●IntscalarNumber of items to return
User.notifications.orderBy ● NotificationOrderInput input
Ordering
User.notifications.skip ● Int scalar
Number of items to skip
Interfaces
Node interface
An object with an ID.
Member Of
Notification object
Implemented By
_Entity union