aboutsummaryrefslogtreecommitdiffstats
path: root/graphql/schema/bug.graphql
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2019-05-22 23:31:46 +0200
committerGitHub <noreply@github.com>2019-05-22 23:31:46 +0200
commit8c263465fbd956f2964bb7cd911b5ea5e8d5a50e (patch)
treef6ed073888a8610100f5e79aa44d8bca6a76c723 /graphql/schema/bug.graphql
parent6e20bf0e73862854aea0cd759a880a6b5f473880 (diff)
parent1c2ee10ce7a32df892604846279c7e199ce0ccea (diff)
downloadgit-bug-8c263465fbd956f2964bb7cd911b5ea5e8d5a50e.tar.gz
Merge pull request #149 from MichaelMure/sandhose/authored
graphql: Implement `Authored` whenever possible
Diffstat (limited to 'graphql/schema/bug.graphql')
-rw-r--r--graphql/schema/bug.graphql3
1 files changed, 1 insertions, 2 deletions
diff --git a/graphql/schema/bug.graphql b/graphql/schema/bug.graphql
index 8e058ed7..03aa95b8 100644
--- a/graphql/schema/bug.graphql
+++ b/graphql/schema/bug.graphql
@@ -27,7 +27,7 @@ enum Status {
CLOSED
}
-type Bug {
+type Bug implements Authored {
"""The identifier for this bug"""
id: String!
"""The human version (truncated) identifier for this bug"""
@@ -116,4 +116,3 @@ type BugEdge {
"""The item at the end of the edge."""
node: Bug!
}
-