Files
wasmer/lib/registry/graphql/queries/get_package_by_command.graphql
2022-11-22 21:20:09 +08:00

18 lines
305 B
GraphQL

query GetPackageByCommandQuery ($commandName: String!) {
getCommand(name: $commandName) {
command
packageVersion {
version
isLastVersion
manifest
distribution {
downloadUrl
piritaDownloadUrl
}
package {
displayName
}
}
}
}