debian-mirror-gitlab/app/assets/javascripts/vue_merge_request_widget/queries/get_state.query.graphql

9 lines
162 B
GraphQL
Raw Normal View History

2020-10-24 23:57:45 +05:30
query getState($projectPath: ID!, $iid: String!) {
project(fullPath: $projectPath) {
mergeRequest(iid: $iid) {
title
workInProgress
}
}
}