update naming of notification fragment

This commit is contained in:
2025-11-05 15:09:33 -08:00
parent 76b5792fd6
commit 056399b6c3
2 changed files with 7 additions and 7 deletions

View File

@@ -5,7 +5,7 @@ query GetNotifications(
) {
notifications(limit: $limit, offset: $offset, filters: $filters) {
notifications {
...NotificationFragment
...Notification
}
totalCount
unreadCount
@@ -33,7 +33,7 @@ mutation DeleteNotification($notificationId: Int!) {
deleteNotification(notificationId: $notificationId)
}
fragment NotificationFragment on NotificationGQL {
fragment Notification on NotificationGQL {
id
notificationType
actor {