This package is for the 'resource-graph' extension, i.e. 'az graph'.
Install this extension using the below CLI command
az extension add --name resoure-graph
Examples:
az graph shared-query create \
-g MyResourceGroup \
-n MySharedQuery \
--query "project id, name, type, location, tags" \
--description "AzureCliTest"
az graph shared-query show \
-g MyResourceGroup \
-n MySharedQuery
az graph shared-query delete \
-g MyResourceGroup \
-n MySharedQuery
az graph shared-query list -g MyResourceGroup
Examples:
az graph query -q "project id, name, type, location, tags"
See https://aka.ms/AzureResourceGraph-QueryLanguage to learn more about query language and browse examples
If you have issues, please give feedback by opening an issue at https://github.com/Azure/azure-cli-extensions/issues.