2020-04-22 19:07:51 +05:30
|
|
|
query getEnvironments($projectPath: ID!, $search: String, $states: [String!]) {
|
2020-03-13 15:44:24 +05:30
|
|
|
project(fullPath: $projectPath) {
|
2020-10-24 23:57:45 +05:30
|
|
|
id
|
2020-04-22 19:07:51 +05:30
|
|
|
data: environments(search: $search, states: $states) {
|
2020-03-13 15:44:24 +05:30
|
|
|
environments: nodes {
|
|
|
|
name
|
|
|
|
id
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|