Files
wasmer/lib/registry/graphql/mutations/generate_deploy_token.graphql
Christoph Herzog d6a94d6086 feat(registry): Add Deploy App Publishing and Token Generation
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.
2023-02-28 16:42:35 +00:00

6 lines
137 B
GraphQL

mutation GenerateDeployToken($appVersionId: String!) {
generateDeployToken(input: { deployAppVersionId: $configId }) {
token
}
}