Files
wasmer/lib/registry/graphql/queries/get_package_by_command.graphql
2023-02-28 16:42:35 +00:00

18 lines
304 B
GraphQL

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