11 lines
254 B
GraphQL
11 lines
254 B
GraphQL
query getEnvironments($projectPath: ID!, $search: String, $states: [String!]) {
|
|
project(fullPath: $projectPath) {
|
|
id
|
|
data: environments(search: $search, states: $states) {
|
|
environments: nodes {
|
|
name
|
|
id
|
|
}
|
|
}
|
|
}
|
|
}
|