debian-mirror-gitlab/app/graphql/queries/epic/epic_details.query.graphql

24 lines
380 B
GraphQL
Raw Normal View History

2021-02-22 17:27:13 +05:30
query epicDetails($fullPath: ID!, $iid: ID!) {
group(fullPath: $fullPath) {
__typename
2022-01-26 12:08:38 +05:30
id
2021-02-22 17:27:13 +05:30
epic(iid: $iid) {
__typename
2022-01-26 12:08:38 +05:30
id
2021-02-22 17:27:13 +05:30
participants {
__typename
edges {
__typename
node {
__typename
2022-01-26 12:08:38 +05:30
id
2021-02-22 17:27:13 +05:30
name
avatarUrl
webUrl
}
}
}
}
}
}