From 1c2ee10ce7a32df892604846279c7e199ce0ccea Mon Sep 17 00:00:00 2001 From: Quentin Gliech Date: Wed, 22 May 2019 21:46:43 +0200 Subject: graphql: Implement `Authored` whenever possible webui: Use a fragment for Authored nodes --- graphql/schema/bug.graphql | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'graphql/schema/bug.graphql') 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! } - -- cgit