Skip to content

Commit 8f55bec

Browse files
committed
GetCustemStackRun
1 parent e6f80a0 commit 8f55bec

File tree

3 files changed

+93
-1
lines changed

3 files changed

+93
-1
lines changed

client.go

+84
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

graph/stack.graphql

+7-1
Original file line numberDiff line numberDiff line change
@@ -104,4 +104,10 @@ mutation DeleteCustomStackRun($id: ID!) {
104104
deleteCustomStackRun(id: $id) {
105105
...CustomStackRunFragment
106106
}
107-
}
107+
}
108+
109+
query GetCustomStackRun($id: ID!) {
110+
customStackRun(id: $id) {
111+
...CustomStackRunFragment
112+
}
113+
}

schema/schema.graphql

+2
Original file line numberDiff line numberDiff line change
@@ -351,6 +351,8 @@ type RootQueryType {
351351

352352
managedNamespace(id: ID!): ManagedNamespace
353353

354+
customStackRun(id: ID!): CustomStackRun
355+
354356
clusterStackRuns(after: String, first: Int, before: String, last: Int): StackRunConnection
355357

356358
stackRun(id: ID!): StackRun

0 commit comments

Comments
 (0)