Files
wasmer/lib/registry/graphql/mutations/publish_package_chunked.graphql
Ayush Jha ca69dac8f0 Check for webc, bindings, exe generation with --wait flag
when the `--wait` flag is specified, subscribe to the `packageVersionReady`
subscription and wait for webc, bindings, exes to be generated.
2024-01-04 16:34:56 +08:00

43 lines
827 B
GraphQL

mutation PublishPackageMutationChunked(
$name: String!
$version: String!
$description: String!
$manifest: String!
$license: String
$licenseFile: String
$readme: String
$fileName: String
$repository: String
$homepage: String
$signature: InputSignature
$signedUrl: String
$private: Boolean
$wait: Boolean
) {
publishPackage(
input: {
name: $name
version: $version
description: $description
manifest: $manifest
license: $license
licenseFile: $licenseFile
readme: $readme
file: $fileName
signedUrl: $signedUrl
repository: $repository
homepage: $homepage
signature: $signature
clientMutationId: ""
private: $private
wait: $wait
}
) {
success
packageVersion {
id
version
}
}
}