10 lines
210 B
GraphQL
10 lines
210 B
GraphQL
query getEnvironments($projectPath: ID!, $search: String) {
|
|
project(fullPath: $projectPath) {
|
|
data: environments(search: $search) {
|
|
environments: nodes {
|
|
name
|
|
id
|
|
}
|
|
}
|
|
}
|
|
}
|