gitlab-org--gitlab-foss/app/assets/javascripts/vue_merge_request_widget/queries/get_state.query.graphql

9 lines
162 B
GraphQL
Raw Normal View History

query getState($projectPath: ID!, $iid: String!) {
project(fullPath: $projectPath) {
mergeRequest(iid: $iid) {
title
workInProgress
}
}
}