diff --git a/server/src/core/server/graph/resolvers/NotificationDSAReportDetails.ts b/server/src/core/server/graph/resolvers/NotificationDSAReportDetails.ts index 77ecb0abf4..2008143672 100644 --- a/server/src/core/server/graph/resolvers/NotificationDSAReportDetails.ts +++ b/server/src/core/server/graph/resolvers/NotificationDSAReportDetails.ts @@ -6,7 +6,7 @@ export const NotificationDSAReportDetailsResolver: Required< GQLNotificationDSAReportDetailsTypeResolver > = { id: ({ id }) => id, - publicID: ({ publicID }) => publicID, + referenceID: ({ referenceID }) => referenceID, comment: async ({ commentID }, input, ctx) => { if (!commentID) { return null; diff --git a/server/src/core/server/graph/schema/schema.graphql b/server/src/core/server/graph/schema/schema.graphql index c85c3b9843..1cd096a231 100644 --- a/server/src/core/server/graph/schema/schema.graphql +++ b/server/src/core/server/graph/schema/schema.graphql @@ -4643,10 +4643,10 @@ type NotificationDSAReportDetails { id: ID! """ - publicID is the public identifier that is human readable + referenceID is the friendly identifier that is human readable for the DSA report. """ - publicID: String! + referenceID: String! """ comment is the comment associated with the DSA report.