@@ -22,9 +22,9 @@ type Documents = {
2222    "\n  fragment NotificationFragment on Notification {\n    id\n    title\n    subject\n    description\n    importance\n    link\n    type\n    timestamp\n    formattedTimestamp\n  }\n" : typeof  types . NotificationFragmentFragmentDoc , 
2323    "\n  fragment NotificationCountFragment on NotificationCounts {\n    total\n    info\n    warning\n    alert\n  }\n" : typeof  types . NotificationCountFragmentFragmentDoc , 
2424    "\n  query Notifications($filter: NotificationFilter!) {\n    notifications {\n      id\n      list(filter: $filter) {\n        ...NotificationFragment\n      }\n    }\n  }\n" : typeof  types . NotificationsDocument , 
25-     "\n  mutation ArchiveNotification($id: String !) {\n    archiveNotification(id: $id) {\n      ...NotificationFragment\n    }\n  }\n" : typeof  types . ArchiveNotificationDocument , 
25+     "\n  mutation ArchiveNotification($id: PrefixedID !) {\n    archiveNotification(id: $id) {\n      ...NotificationFragment\n    }\n  }\n" : typeof  types . ArchiveNotificationDocument , 
2626    "\n  mutation ArchiveAllNotifications {\n    archiveAll {\n      unread {\n        total\n      }\n      archive {\n        info\n        warning\n        alert\n        total\n      }\n    }\n  }\n" : typeof  types . ArchiveAllNotificationsDocument , 
27-     "\n  mutation DeleteNotification($id: String !, $type: NotificationType!) {\n    deleteNotification(id: $id, type: $type) {\n      archive {\n        total\n      }\n    }\n  }\n" : typeof  types . DeleteNotificationDocument , 
27+     "\n  mutation DeleteNotification($id: PrefixedID !, $type: NotificationType!) {\n    deleteNotification(id: $id, type: $type) {\n      archive {\n        total\n      }\n    }\n  }\n" : typeof  types . DeleteNotificationDocument , 
2828    "\n  mutation DeleteAllNotifications {\n    deleteArchivedNotifications {\n      archive {\n        total\n      }\n      unread {\n        total\n      }\n    }\n  }\n" : typeof  types . DeleteAllNotificationsDocument , 
2929    "\n  query Overview {\n    notifications {\n      id\n      overview {\n        unread {\n          info\n          warning\n          alert\n          total\n        }\n        archive {\n          total\n        }\n      }\n    }\n  }\n" : typeof  types . OverviewDocument , 
3030    "\n  mutation RecomputeOverview {\n    recalculateOverview {\n      archive {\n        ...NotificationCountFragment\n      }\n      unread {\n        ...NotificationCountFragment\n      }\n    }\n  }\n" : typeof  types . RecomputeOverviewDocument , 
@@ -48,9 +48,9 @@ const documents: Documents = {
4848    "\n  fragment NotificationFragment on Notification {\n    id\n    title\n    subject\n    description\n    importance\n    link\n    type\n    timestamp\n    formattedTimestamp\n  }\n" : types . NotificationFragmentFragmentDoc , 
4949    "\n  fragment NotificationCountFragment on NotificationCounts {\n    total\n    info\n    warning\n    alert\n  }\n" : types . NotificationCountFragmentFragmentDoc , 
5050    "\n  query Notifications($filter: NotificationFilter!) {\n    notifications {\n      id\n      list(filter: $filter) {\n        ...NotificationFragment\n      }\n    }\n  }\n" : types . NotificationsDocument , 
51-     "\n  mutation ArchiveNotification($id: String !) {\n    archiveNotification(id: $id) {\n      ...NotificationFragment\n    }\n  }\n" : types . ArchiveNotificationDocument , 
51+     "\n  mutation ArchiveNotification($id: PrefixedID !) {\n    archiveNotification(id: $id) {\n      ...NotificationFragment\n    }\n  }\n" : types . ArchiveNotificationDocument , 
5252    "\n  mutation ArchiveAllNotifications {\n    archiveAll {\n      unread {\n        total\n      }\n      archive {\n        info\n        warning\n        alert\n        total\n      }\n    }\n  }\n" : types . ArchiveAllNotificationsDocument , 
53-     "\n  mutation DeleteNotification($id: String !, $type: NotificationType!) {\n    deleteNotification(id: $id, type: $type) {\n      archive {\n        total\n      }\n    }\n  }\n" : types . DeleteNotificationDocument , 
53+     "\n  mutation DeleteNotification($id: PrefixedID !, $type: NotificationType!) {\n    deleteNotification(id: $id, type: $type) {\n      archive {\n        total\n      }\n    }\n  }\n" : types . DeleteNotificationDocument , 
5454    "\n  mutation DeleteAllNotifications {\n    deleteArchivedNotifications {\n      archive {\n        total\n      }\n      unread {\n        total\n      }\n    }\n  }\n" : types . DeleteAllNotificationsDocument , 
5555    "\n  query Overview {\n    notifications {\n      id\n      overview {\n        unread {\n          info\n          warning\n          alert\n          total\n        }\n        archive {\n          total\n        }\n      }\n    }\n  }\n" : types . OverviewDocument , 
5656    "\n  mutation RecomputeOverview {\n    recalculateOverview {\n      archive {\n        ...NotificationCountFragment\n      }\n      unread {\n        ...NotificationCountFragment\n      }\n    }\n  }\n" : types . RecomputeOverviewDocument , 
@@ -115,15 +115,15 @@ export function graphql(source: "\n  query Notifications($filter: NotificationFi
115115/** 
116116 * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. 
117117 */ 
118- export  function  graphql ( source : "\n  mutation ArchiveNotification($id: String !) {\n    archiveNotification(id: $id) {\n      ...NotificationFragment\n    }\n  }\n" ) : ( typeof  documents ) [ "\n  mutation ArchiveNotification($id: String !) {\n    archiveNotification(id: $id) {\n      ...NotificationFragment\n    }\n  }\n" ] ; 
118+ export  function  graphql ( source : "\n  mutation ArchiveNotification($id: PrefixedID !) {\n    archiveNotification(id: $id) {\n      ...NotificationFragment\n    }\n  }\n" ) : ( typeof  documents ) [ "\n  mutation ArchiveNotification($id: PrefixedID !) {\n    archiveNotification(id: $id) {\n      ...NotificationFragment\n    }\n  }\n" ] ; 
119119/** 
120120 * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. 
121121 */ 
122122export  function  graphql ( source : "\n  mutation ArchiveAllNotifications {\n    archiveAll {\n      unread {\n        total\n      }\n      archive {\n        info\n        warning\n        alert\n        total\n      }\n    }\n  }\n" ) : ( typeof  documents ) [ "\n  mutation ArchiveAllNotifications {\n    archiveAll {\n      unread {\n        total\n      }\n      archive {\n        info\n        warning\n        alert\n        total\n      }\n    }\n  }\n" ] ; 
123123/** 
124124 * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. 
125125 */ 
126- export  function  graphql ( source : "\n  mutation DeleteNotification($id: String !, $type: NotificationType!) {\n    deleteNotification(id: $id, type: $type) {\n      archive {\n        total\n      }\n    }\n  }\n" ) : ( typeof  documents ) [ "\n  mutation DeleteNotification($id: String !, $type: NotificationType!) {\n    deleteNotification(id: $id, type: $type) {\n      archive {\n        total\n      }\n    }\n  }\n" ] ; 
126+ export  function  graphql ( source : "\n  mutation DeleteNotification($id: PrefixedID !, $type: NotificationType!) {\n    deleteNotification(id: $id, type: $type) {\n      archive {\n        total\n      }\n    }\n  }\n" ) : ( typeof  documents ) [ "\n  mutation DeleteNotification($id: PrefixedID !, $type: NotificationType!) {\n    deleteNotification(id: $id, type: $type) {\n      archive {\n        total\n      }\n    }\n  }\n" ] ; 
127127/** 
128128 * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. 
129129 */ 
0 commit comments