diff options
Diffstat (limited to 'graphql/schema.graphql')
-rw-r--r-- | graphql/schema.graphql | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/graphql/schema.graphql b/graphql/schema.graphql index 14b2bec5..6aadfaf1 100644 --- a/graphql/schema.graphql +++ b/graphql/schema.graphql @@ -79,7 +79,7 @@ type OperationConnection { type OperationEdge { cursor: String! - node: OperationUnion! + node: Operation! } # An operation applied to a bug. @@ -128,13 +128,6 @@ type LabelChangeOperation implements Operation, Authored { removed: [Label!]! } -union OperationUnion = - CreateOperation - | SetTitleOperation - | AddCommentOperation - | SetStatusOperation - | LabelChangeOperation - # The connection type for Bug. type BugConnection { # A list of edges. |