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