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.
6 lines
137 B
GraphQL
6 lines
137 B
GraphQL
mutation GenerateDeployToken($appVersionId: String!) {
|
|
generateDeployToken(input: { deployAppVersionId: $configId }) {
|
|
token
|
|
}
|
|
}
|