Skip to content

Commit

Permalink
cli queries updated (#295)
Browse files Browse the repository at this point in the history
* cli queries updated

* changes in kl cli

* minor change
  • Loading branch information
nxtcoder36 authored Sep 17, 2024
1 parent 600e54e commit 501e308
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions gql-queries-generator/doc/queries.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -6486,6 +6486,7 @@ mutation authCli_createClusterReference($cluster: BYOKClusterIn!) {
infra_createBYOKCluster(cluster: $cluster) {
id
clusterToken
displayName
metadata {
name
}
Expand Down Expand Up @@ -6630,6 +6631,7 @@ query authCli_listByokClusters($search: SearchCluster, $pagination: CursorPagina
edges {
cursor
node {
clusterToken
displayName
id
metadata {
Expand Down
2 changes: 2 additions & 0 deletions src/apps/auth/server/gql/cli-queries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -723,6 +723,7 @@ export const cliQueries = (executor: IExecutor) => ({
infra_createBYOKCluster(cluster: $cluster) {
id
clusterToken
displayName
metadata {
name
}
Expand Down Expand Up @@ -914,6 +915,7 @@ export const cliQueries = (executor: IExecutor) => ({
edges {
cursor
node {
clusterToken
displayName
id
metadata {
Expand Down
2 changes: 2 additions & 0 deletions src/generated/gql/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8141,6 +8141,7 @@ export type AuthCli_CreateClusterReferenceMutation = {
infra_createBYOKCluster?: {
id: string;
clusterToken: string;
displayName: string;
metadata: { name: string };
};
};
Expand Down Expand Up @@ -8286,6 +8287,7 @@ export type AuthCli_ListByokClustersQuery = {
edges: Array<{
cursor: string;
node: {
clusterToken: string;
displayName: string;
id: string;
updateTime: any;
Expand Down

0 comments on commit 501e308

Please sign in to comment.