summaryrefslogtreecommitdiff
path: root/app/graphql/queries/epic/epic_details.query.graphql
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/queries/epic/epic_details.query.graphql')
-rw-r--r--app/graphql/queries/epic/epic_details.query.graphql20
1 files changed, 20 insertions, 0 deletions
diff --git a/app/graphql/queries/epic/epic_details.query.graphql b/app/graphql/queries/epic/epic_details.query.graphql
new file mode 100644
index 00000000000..406d630b180
--- /dev/null
+++ b/app/graphql/queries/epic/epic_details.query.graphql
@@ -0,0 +1,20 @@
+query epicDetails($fullPath: ID!, $iid: ID!) {
+ group(fullPath: $fullPath) {
+ __typename
+ epic(iid: $iid) {
+ __typename
+ participants {
+ __typename
+ edges {
+ __typename
+ node {
+ __typename
+ name
+ avatarUrl
+ webUrl
+ }
+ }
+ }
+ }
+ }
+}