Skip to content

Commit

Permalink
feat(client): add upsertVirtualCluster mutation (#1335)
Browse files Browse the repository at this point in the history
  • Loading branch information
floreks authored Aug 26, 2024
1 parent a5b3850 commit 4d00f26
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 0 deletions.
52 changes: 52 additions & 0 deletions go/client/client.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions go/client/graph/cluster.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -193,3 +193,9 @@ query MyCluster {
}
}
}

mutation UpsertVirtualCluster($parentID: ID!, $attributes: ClusterAttributes!) {
upsertVirtualCluster(parentId: $parentID, attributes: $attributes) {
...TinyClusterFragment
}
}

0 comments on commit 4d00f26

Please sign in to comment.