Files
wasmer/lib/registry/graphql/mutations/publish_deploy_app.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

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
}
}
}
}