diff options
author | Michael Muré <batolettre@gmail.com> | 2018-07-29 19:37:06 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-07-29 19:37:32 +0200 |
commit | c351cfd30d59c9179cc940f9ae15c461462e1a50 (patch) | |
tree | f2a218d26f350f265200e2ee89a1c94ca26fd770 /graphql/schema.graphql | |
parent | 8fa0b258ac89781dae269790a4bde09cbcd2f324 (diff) | |
download | git-bug-c351cfd30d59c9179cc940f9ae15c461462e1a50.tar.gz |
graphql: directly return a connection, cleaning
Diffstat (limited to 'graphql/schema.graphql')
-rw-r--r-- | graphql/schema.graphql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphql/schema.graphql b/graphql/schema.graphql index 47716488..14b2bec5 100644 --- a/graphql/schema.graphql +++ b/graphql/schema.graphql @@ -138,7 +138,7 @@ union OperationUnion = # The connection type for Bug. type BugConnection { # A list of edges. - edges: [BugEdge]! + edges: [BugEdge!]! # Information to aid in pagination. pageInfo: PageInfo! |