Skip to content

Commit

Permalink
cli queries updated
Browse files Browse the repository at this point in the history
  • Loading branch information
nxtcoder36 committed Sep 17, 2024
1 parent 45a12e8 commit 38c3ba9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion gql-queries-generator/doc/queries.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -6484,8 +6484,8 @@ query authCli_getRemoteLogin($loginId: String!, $secret: String!) {

mutation authCli_createClusterReference($cluster: BYOKClusterIn!) {
infra_createBYOKCluster(cluster: $cluster) {
id
clusterToken
displayName
metadata {
name
}
Expand Down Expand Up @@ -6630,6 +6630,7 @@ query authCli_listByokClusters($search: SearchCluster, $pagination: CursorPagina
edges {
cursor
node {
clusterToken
displayName
id
metadata {
Expand Down
3 changes: 2 additions & 1 deletion src/apps/auth/server/gql/cli-queries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -721,8 +721,8 @@ export const cliQueries = (executor: IExecutor) => ({
gql`
mutation Infra_createBYOKCluster($cluster: BYOKClusterIn!) {
infra_createBYOKCluster(cluster: $cluster) {
id
clusterToken
displayName
metadata {
name
}
Expand Down Expand Up @@ -914,6 +914,7 @@ export const cliQueries = (executor: IExecutor) => ({
edges {
cursor
node {
clusterToken
displayName
id
metadata {
Expand Down
3 changes: 2 additions & 1 deletion src/generated/gql/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8139,8 +8139,8 @@ export type AuthCli_CreateClusterReferenceMutationVariables = Exact<{

export type AuthCli_CreateClusterReferenceMutation = {
infra_createBYOKCluster?: {
id: string;
clusterToken: string;
displayName: string;
metadata: { name: string };
};
};
Expand Down Expand Up @@ -8286,6 +8286,7 @@ export type AuthCli_ListByokClustersQuery = {
edges: Array<{
cursor: string;
node: {
clusterToken: string;
displayName: string;
id: string;
updateTime: any;
Expand Down

0 comments on commit 38c3ba9

Please sign in to comment.