diff options
author | Michael Muré <batolettre@gmail.com> | 2018-09-11 19:46:38 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-09-11 19:46:38 +0200 |
commit | 7b05983c19af4da70f2a9a5062913f4e4f5d5faa (patch) | |
tree | 006d9b828d249e6a7e3362164308089991c74857 /graphql/schema.graphql | |
parent | 9cbd5b4ee113c660377ffe9c01ca374d6addfef4 (diff) | |
download | git-bug-7b05983c19af4da70f2a9a5062913f4e4f5d5faa.tar.gz |
graphql: AllBugs now accept a query
Diffstat (limited to 'graphql/schema.graphql')
-rw-r--r-- | graphql/schema.graphql | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/graphql/schema.graphql b/graphql/schema.graphql index 5910984d..779331c4 100644 --- a/graphql/schema.graphql +++ b/graphql/schema.graphql @@ -180,6 +180,8 @@ type Repository { first: Int # Returns the last _n_ elements from the list. last: Int + # A query to select and order bugs + query: String ): BugConnection! bug(prefix: String!): Bug } |