Make createdAt/updatedAt non-nullable for NOTIFIED

- Follow @Tirokk PR review suggestion
This commit is contained in:
mattwr18 2019-11-08 17:54:02 +01:00
parent 288787bcb9
commit f650c5cc05

View File

@ -2,8 +2,8 @@ type NOTIFIED {
id: ID! id: ID!
from: NotificationSource from: NotificationSource
to: User to: User
createdAt: String createdAt: String!
updatedAt: String updatedAt: String!
read: Boolean read: Boolean
reason: NotificationReason reason: NotificationReason
} }