Skip to content

Commit 9494c49

Browse files
author
Mattias Ängehov
committed
fixed parameters
1 parent 6ba8707 commit 9494c49

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/ResourceGraph/ResourceGraph/help/Search-AzGraph.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,24 +57,24 @@ A complex query on resources featuring field selection, filtering and summarizin
5757

5858
### Example 3
5959
```powershell
60-
PS C:\> Search-AzGraph -Query -Include DisplayName 'where type =~ "Microsoft.Compute/virtualMachines"| where properties.storageProfile.osDisk.managedDisk == "" | project name, resourceGroup, subscriptionDisplayName'
60+
PS C:\> Search-AzGraph -Include DisplayName -Query 'where type =~ "Microsoft.Compute/virtualMachines"| where properties.storageProfile.osDisk.managedDisk == "" | project name, resourceGroup, subscriptionDisplayName'
6161
6262
name resourceGroup subscriptionDisplayName
6363
---- ------------- -----------------------
6464
ContosoVM RG-Contoso Contoso Production Subscription
6565
6666
```
67-
A query featuring all virtual machines which are not using Managed Disks and includes subscription displayname.
67+
A query featuring all virtual machines which are not using Managed Disks and includes subscription display names.
6868

6969
### Example 4
7070
```powershell
71-
PS C:\> Search-AzGraph -Query -Include DisplayName 'summarize count() by tenantDisplayName, subscriptionDisplayName'
71+
PS C:\> Search-AzGraph -Include DisplayName -Query 'summarize count() by tenantDisplayName, subscriptionDisplayName'
7272
7373
tenantDisplayName subscriptionDisplayName count_
7474
----------------- ----------------------- ------
7575
ContosoTenant Contoso Production Subscription 118
7676
```
77-
A query displaying the count of resources by tenant and subscription displayname.
77+
A query displaying the count of resources by tenant and subscription display names.
7878

7979
## PARAMETERS
8080

0 commit comments

Comments
 (0)