8 lines
174 B
GraphQL
8 lines
174 B
GraphQL
|
query getK8sPods($configuration: Object, $namespace: String) {
|
||
|
k8sPods(configuration: $configuration, namespace: $namespace) @client {
|
||
|
status {
|
||
|
phase
|
||
|
}
|
||
|
}
|
||
|
}
|