aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/list/ListQuery.graphql
diff options
context:
space:
mode:
Diffstat (limited to 'webui/src/list/ListQuery.graphql')
-rw-r--r--webui/src/list/ListQuery.graphql37
1 files changed, 0 insertions, 37 deletions
diff --git a/webui/src/list/ListQuery.graphql b/webui/src/list/ListQuery.graphql
deleted file mode 100644
index ded60c8a..00000000
--- a/webui/src/list/ListQuery.graphql
+++ /dev/null
@@ -1,37 +0,0 @@
-#import "./BugRow.graphql"
-
-query ListBugs(
- $first: Int
- $last: Int
- $after: String
- $before: String
- $query: String
-) {
- repository {
- bugs: allBugs(
- first: $first
- last: $last
- after: $after
- before: $before
- query: $query
- ) {
- ...BugList
- pageInfo {
- hasNextPage
- hasPreviousPage
- startCursor
- endCursor
- }
- }
- }
-}
-
-fragment BugList on BugConnection {
- totalCount
- edges {
- cursor
- node {
- ...BugRow
- }
- }
-}