aboutsummaryrefslogtreecommitdiffstats
path: root/api/graphql/schema/bug.graphql
diff options
context:
space:
mode:
Diffstat (limited to 'api/graphql/schema/bug.graphql')
-rw-r--r--api/graphql/schema/bug.graphql4
1 files changed, 3 insertions, 1 deletions
diff --git a/api/graphql/schema/bug.graphql b/api/graphql/schema/bug.graphql
index 03aa95b8..17d3a897 100644
--- a/api/graphql/schema/bug.graphql
+++ b/api/graphql/schema/bug.graphql
@@ -1,5 +1,7 @@
"""Represents a comment on a bug."""
type Comment implements Authored {
+ id: CombinedId!
+
"""The author of this comment."""
author: Identity!
@@ -29,7 +31,7 @@ enum Status {
type Bug implements Authored {
"""The identifier for this bug"""
- id: String!
+ id: ID!
"""The human version (truncated) identifier for this bug"""
humanId: String!
status: Status!