gitlab-org--gitlab-foss/app/graphql/queries/epic/epic_details.query.graphql

21 lines
349 B
GraphQL
Raw Normal View History

query epicDetails($fullPath: ID!, $iid: ID!) {
group(fullPath: $fullPath) {
__typename
epic(iid: $iid) {
__typename
participants {
__typename
edges {
__typename
node {
__typename
name
avatarUrl
webUrl
}
}
}
}
}
}