Skip to content

Commit 799f098

Browse files
committed
Corrected wrapping on table
1 parent 871aaf2 commit 799f098

File tree

1 file changed

+15
-8
lines changed

1 file changed

+15
-8
lines changed

microsoftgraph/docs-conceptual/use-query-parameters.md

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,22 @@ Microsoft PowerShell SDK cmdlets may support one or more of the following OData
2020
>[!TIP]
2121
>OData query options in the Microsoft Graph API use lowercase names and specify the dollar ($) prefix while in Microsoft Graph PowerShell SDK, their names are Pascal-cased and prefixed with a hyphen (-). For example, `$count` and `$orderBy` are to Microsoft Graph API while `-Count` and `-OrderBy`, respectively, are to Microsoft Graph PowerShell SDK.
2222
23+
<!---(Disable wrapping the first column of the table.)--->
24+
<style>
25+
td:first-child {
26+
white-space: nowrap;
27+
}
28+
</style>
29+
2330
|Name|Description|Example|
24-
|--------|----|-----|
25-
| [-Count](#count-parameter) |Retrieves the total count of matching resources|`Get-MgUser -ConsistencyLevel eventual -Count count`<br>`$count`|
26-
| [-Expand](#expand-parameter)| Retrieves related resources|<code>Get-MgGroup -GroupId '0e06b38f-931a-47db-9a9a-60ab5f492005' -Expand members &#124; Select -ExpandProperty members</code>|
27-
| [-Filter](#filter-parameter)| Filters results (rows)|`Get-MgUser -Filter "startsWith(DisplayName, 'Conf')"`|
28-
| [-OrderBy](#orderby-parameter)| Orders results|`Get-MgUser -OrderBy DisplayName`|
29-
| [-Search](#search-parameter)| Returns results based on search criteria|`Get-MgUser -ConsistencyLevel eventual -Search '"DisplayName:Conf"'`|
30-
| [-Property](#property-parameter)| Filters properties (columns)|<code>Get-MgUser -Property Id, DisplayName &#124; Select Id, DisplayName</code>|
31-
| [-Top](#top-parameter)| Sets the page size of results. |`Get-MgUser -Top 10`|
31+
|-------------|----|-----|
32+
|[-Count](#count-parameter)|Retrieves the total count of matching resources|`Get-MgUser -ConsistencyLevel eventual -Count count`<br>`$count`|
33+
|[-Expand](#expand-parameter)| Retrieves related resources|<code>Get-MgGroup -GroupId '0e06b38f-931a-47db-9a9a-60ab5f492005' -Expand members &#124; Select -ExpandProperty members</code>|
34+
|[-Filter](#filter-parameter)| Filters results (rows)|`Get-MgUser -Filter "startsWith(DisplayName, 'Conf')"`|
35+
|[-OrderBy](#orderby-parameter)| Orders results|`Get-MgUser -OrderBy DisplayName`|
36+
|[-Search](#search-parameter)| Returns results based on search criteria|`Get-MgUser -ConsistencyLevel eventual -Search '"DisplayName:Conf"'`|
37+
|[-Property](#property-parameter)| Filters properties (columns)|<code>Get-MgUser -Property Id, DisplayName &#124; Select Id, DisplayName</code>|
38+
|[-Top](#top-parameter)| Sets the page size of results. |`Get-MgUser -Top 10`|
3239

3340
## Count parameter
3441

0 commit comments

Comments
 (0)