mirror of
https://github.com/mii443/wasmer.git
synced 2025-09-04 00:19:24 +00:00
Adds two new GraphQL mutations for publishing a Deploy app and for creating a Deploy token for an app version. Also extends the RegistryClient with functions to execute these mutations.
17 lines
320 B
GraphQL
17 lines
320 B
GraphQL
mutation PublishDeployApp($config: JSONString!, $name: ID, $owner: ID) {
|
|
publishDeployApp(input: { config: $config, name: $name, owner: $owner }) {
|
|
deployAppVersion {
|
|
id
|
|
version
|
|
app {
|
|
id
|
|
owner {
|
|
__typename
|
|
globalName
|
|
}
|
|
name
|
|
}
|
|
}
|
|
}
|
|
}
|