Skip to content

Commit

Permalink
Missed cleanup files
Browse files Browse the repository at this point in the history
  • Loading branch information
noah-paige committed Oct 1, 2024
1 parent 298e244 commit 00633e3
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 18 deletions.
15 changes: 0 additions & 15 deletions backend/dataall/modules/notifications/api/queries.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
from dataall.base.api import gql
from .resolvers import (
count_deleted_notifications,
count_read_notifications,
count_unread_notifications,
list_my_notifications,
)
Expand All @@ -22,16 +20,3 @@
resolver=count_unread_notifications,
)

# Not used in frontend
countReadNotifications = gql.QueryField(
name='countReadNotifications',
type=gql.Integer,
resolver=count_read_notifications,
)

# Not used in frontend
countDeletedNotifications = gql.QueryField(
name='countDeletedNotifications',
type=gql.Integer,
resolver=count_deleted_notifications,
)
3 changes: 0 additions & 3 deletions frontend/src/services/graphql/Notification/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
export * from './archiveNotification';
export * from './countDeletedNotifications';
export * from './countReadNotifications';
export * from './countUnreadNotifications';
export * from './listNotifications';
export * from './markAsRead';

0 comments on commit 00633e3

Please sign in to comment.