gitlab-org--gitlab-foss/app/assets/javascripts/terraform/graphql/queries/get_states.query.graphql

13 lines
205 B
GraphQL
Raw Normal View History

#import "../fragments/state.fragment.graphql"
query getStates($projectPath: ID!) {
project(fullPath: $projectPath) {
terraformStates {
count
nodes {
...State
}
}
}
}