Skip to content

Commit

Permalink
GetCustemStackRun
Browse files Browse the repository at this point in the history
  • Loading branch information
zreigz committed Jun 5, 2024
1 parent e6f80a0 commit 8f55bec
Show file tree
Hide file tree
Showing 3 changed files with 93 additions and 1 deletion.
84 changes: 84 additions & 0 deletions client.go

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

8 changes: 7 additions & 1 deletion graph/stack.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -104,4 +104,10 @@ mutation DeleteCustomStackRun($id: ID!) {
deleteCustomStackRun(id: $id) {
...CustomStackRunFragment
}
}
}

query GetCustomStackRun($id: ID!) {
customStackRun(id: $id) {
...CustomStackRunFragment
}
}
2 changes: 2 additions & 0 deletions schema/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -351,6 +351,8 @@ type RootQueryType {

managedNamespace(id: ID!): ManagedNamespace

customStackRun(id: ID!): CustomStackRun

clusterStackRuns(after: String, first: Int, before: String, last: Int): StackRunConnection

stackRun(id: ID!): StackRun
Expand Down

0 comments on commit 8f55bec

Please sign in to comment.