Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
floreks committed Oct 3, 2024
1 parent a8a477e commit 688e32b
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions assets/src/graph/cdClusters.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -389,8 +389,22 @@ query ClustersTiny($projectId: ID, $first: Int) {
}
}

query VClusters($first: Int, $after: String, $q: String, $healthy: Boolean, $projectId: ID, $parentId: ID!) {
clusters(first: $first, after: $after, q: $q, healthy: $healthy, projectId: $projectId, parentId: $parentId) {
query VClusters(
$first: Int
$after: String
$q: String
$healthy: Boolean
$projectId: ID
$parentId: ID!
) {
clusters(
first: $first
after: $after
q: $q
healthy: $healthy
projectId: $projectId
parentId: $parentId
) {
pageInfo {
...PageInfo
}
Expand Down

0 comments on commit 688e32b

Please sign in to comment.