Skip to content

Commit fccdb55

Browse files
authored
Fixes extra space in filter query to improve readability (#9844)
1 parent 6d4715c commit fccdb55

14 files changed

Lines changed: 17 additions & 17 deletions

api-reference/beta/api/directoryobject-delta.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ GET /directoryObjects/delta?$filter=id eq '{id}'
6161
This method supports optional OData query parameters to help customize the response.
6262

6363
- You can use a `$select` query parameter as in any GET request to specify only the properties your need for best performance. The _id_ property is always returned.
64-
- When filtering multiple objects, for example, `/directoryObjects/delta/?$filter= id eq '477e9fc6-5de7-4406-bb2a-7e5c83c9ffff' or id eq '004d6a07-fe70-4b92-add5-e6e37b8affff'`, there's a limit of 50 filter expressions.
64+
- When filtering multiple objects, for example, `/directoryObjects/delta/?$filter=id eq '477e9fc6-5de7-4406-bb2a-7e5c83c9ffff' or id eq '004d6a07-fe70-4b92-add5-e6e37b8affff'`, there's a limit of 50 filter expressions.
6565
- You can combine the `$filter` syntaxes. For example, `$filter=isof('{resource type}') or id eq '{id}'`. This provides an **intersection** of objects specified by matching `{resource type}` and the resource type of `{id}`.
6666

6767
## Request headers

api-reference/beta/api/educationsubmission-list-resources.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ The following example shows a request.
167167
}-->
168168

169169
```msgraph-interactive
170-
GET https://graph.microsoft.com/beta/education/classes/2003c52e-807a-4186-9b49-60c573095461/assignments/8f5311bb-ee1e-4bf0-9827-3fd8c57bdde2/submissions/57ef8ee2-4755-4351-66d0-8e37192870a5/resources?$filter= id eq 'c4682401-6866-4962-94d9-7499782a13e9'
170+
GET https://graph.microsoft.com/beta/education/classes/2003c52e-807a-4186-9b49-60c573095461/assignments/8f5311bb-ee1e-4bf0-9827-3fd8c57bdde2/submissions/57ef8ee2-4755-4351-66d0-8e37192870a5/resources?$filter=id eq 'c4682401-6866-4962-94d9-7499782a13e9'
171171
```
172172

173173
# [C#](#tab/csharp)

api-reference/beta/api/goals-list-exportjobs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ The following example shows a request.
130130
}
131131
-->
132132
```msgraph-interactive
133-
GET https://graph.microsoft.com/beta/employeeexperience/goals/exportJobs?$filter= goalsOrganizationId eq '3d9a8150-90fd-42bd-9777-25ba783d4a05'
133+
GET https://graph.microsoft.com/beta/employeeexperience/goals/exportJobs?$filter=goalsOrganizationId eq '3d9a8150-90fd-42bd-9777-25ba783d4a05'
134134
```
135135

136136
# [C#](#tab/csharp)
@@ -198,7 +198,7 @@ The following example shows a request.
198198
}
199199
-->
200200
```msgraph-interactive
201-
GET https://graph.microsoft.com/beta/employeeexperience/goals/exportJobs?$filter= explorerViewId eq 9ab0fcab-c1d4-4b26-963b-a3c33155f853
201+
GET https://graph.microsoft.com/beta/employeeexperience/goals/exportJobs?$filter=explorerViewId eq '9ab0fcab-c1d4-4b26-963b-a3c33155f853'
202202
```
203203

204204
# [C#](#tab/csharp)

api-reference/beta/api/group-delta.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ This method supports optional OData query parameters to help customize the respo
5858
- You can additionally track other changes like ownership and more by selecting any [group relationship](../resources/group.md#relationships) of type **directoryObject collection**.
5959
- Only the **id** property of the related resource is returned.
6060
- There's limited support for `$filter`:
61-
- The only supported `$filter` expression is for tracking changes on a specific object: `$filter=id+eq+{value}`. You can filter multiple objects. For example, `https://graph.microsoft.com/beta/groups/delta/?$filter= id eq '477e9fc6-5de7-4406-bb2a-7e5c83c9ffff' or id eq '004d6a07-fe70-4b92-add5-e6e37b8affff'`. There's a limit of 50 filtered objects.
61+
- The only supported `$filter` expression is for tracking changes on a specific object: `$filter=id+eq+{value}`. You can filter multiple objects. For example, `https://graph.microsoft.com/beta/groups/delta/?$filter=id eq '477e9fc6-5de7-4406-bb2a-7e5c83c9ffff' or id eq '004d6a07-fe70-4b92-add5-e6e37b8affff'`. There's a limit of 50 filtered objects.
6262

6363
## Request headers
6464

api-reference/beta/api/orgcontact-delta.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ This method supports optional OData query parameters to help customize the respo
5656

5757
- You can use a `$select` query parameter as in any GET request to specify only the properties you need for best performance. The **id** property is always returned.
5858
- There's limited support for `$filter`:
59-
- The only supported `$filter` expression is for tracking changes on a specific object: `$filter=id+eq+{value}`. You can filter multiple objects. For example, `https://graph.microsoft.com/beta/contacts/delta/?$filter= id eq '477e9fc6-5de7-4406-bb2a-7e5c83c9ffff' or id eq '004d6a07-fe70-4b92-add5-e6e37b8affff'`. There's a limit of 50 filtered objects.
59+
- The only supported `$filter` expression is for tracking changes on a specific object: `$filter=id+eq+{value}`. You can filter multiple objects. For example, `https://graph.microsoft.com/beta/contacts/delta/?$filter=id eq '477e9fc6-5de7-4406-bb2a-7e5c83c9ffff' or id eq '004d6a07-fe70-4b92-add5-e6e37b8affff'`. There's a limit of 50 filtered objects.
6060

6161
## Request headers
6262
| Name | Description|

api-reference/beta/api/user-delta.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ This method supports optional OData Query Parameters to help customize the respo
5858

5959
- You can use a `$select` query parameter as in any GET request to specify only the properties your need for best performance. The *id* property is always returned.
6060
- There's limited support for `$filter`:
61-
- The only supported `$filter` expression is for tracking changes on a specific object: `$filter=id+eq+{value}`. You can filter multiple objects. For example, `https://graph.microsoft.com/beta/users/delta/?$filter= id eq '477e9fc6-5de7-4406-bb2a-7e5c83c9ffff' or id eq '004d6a07-fe70-4b92-add5-e6e37b8affff'`. There's a limit of 50 filtered objects.
61+
- The only supported `$filter` expression is for tracking changes on a specific object: `$filter=id+eq+{value}`. You can filter multiple objects. For example, `https://graph.microsoft.com/beta/users/delta/?$filter=id eq '477e9fc6-5de7-4406-bb2a-7e5c83c9ffff' or id eq '004d6a07-fe70-4b92-add5-e6e37b8affff'`. There's a limit of 50 filtered objects.
6262

6363
## Request headers
6464
| Name | Description|

api-reference/beta/api/userconsentrequest-filterbycurrentuser.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ In this request, you list all **userConsentRequest** objects for which the curre
6969
}
7070
-->
7171
```msgraph-interactive
72-
GET https://graph.microsoft.com/beta/identityGovernance/appConsent/appConsentRequests/ee245379-e3bb-4944-a997-24115f0b8b5e/userConsentRequests/filterByCurrentUser(on='reviewer')?$filter= (status eq 'Completed')
72+
GET https://graph.microsoft.com/beta/identityGovernance/appConsent/appConsentRequests/ee245379-e3bb-4944-a997-24115f0b8b5e/userConsentRequests/filterByCurrentUser(on='reviewer')?$filter=(status eq 'Completed')
7373
```
7474

7575
# [C#](#tab/csharp)

api-reference/v1.0/api/directoryobject-delta.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ GET /directoryObjects/delta?$filter=id eq '{id}'
6161
This method supports optional OData query parameters to help customize the response.
6262

6363
- You can use a `$select` query parameter as in any GET request to specify only the properties your need for best performance. The _id_ property is always returned.
64-
- When filtering multiple objects, for example, `/directoryObjects/delta/?$filter= id eq '477e9fc6-5de7-4406-bb2a-7e5c83c9ffff' or id eq '004d6a07-fe70-4b92-add5-e6e37b8affff'`, there's a limit of 50 filter expressions.
64+
- When filtering multiple objects, for example, `/directoryObjects/delta/?$filter=id eq '477e9fc6-5de7-4406-bb2a-7e5c83c9ffff' or id eq '004d6a07-fe70-4b92-add5-e6e37b8affff'`, there's a limit of 50 filter expressions.
6565
- You can combine the `$filter` syntaxes. For example, `$filter=isof('{resource type}') or id eq '{id}'`. This provides an **intersection** of objects specified by matching `{resource type}` and the resource type of `{id}`.
6666

6767
## Request headers

api-reference/v1.0/api/educationsubmission-list-resources.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ The following example shows a request.
164164
}-->
165165

166166
```msgraph-interactive
167-
GET https://graph.microsoft.com/v1.0/education/classes/2003c52e-807a-4186-9b49-60c573095461/assignments/8f5311bb-ee1e-4bf0-9827-3fd8c57bdde2/submissions/57ef8ee2-4755-4351-66d0-8e37192870a5/resources?$filter= id eq 'c4682401-6866-4962-94d9-7499782a13e9'
167+
GET https://graph.microsoft.com/v1.0/education/classes/2003c52e-807a-4186-9b49-60c573095461/assignments/8f5311bb-ee1e-4bf0-9827-3fd8c57bdde2/submissions/57ef8ee2-4755-4351-66d0-8e37192870a5/resources?$filter=id eq 'c4682401-6866-4962-94d9-7499782a13e9'
168168
```
169169

170170
# [C#](#tab/csharp)

api-reference/v1.0/api/group-delta.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ This method supports optional OData query parameters to help customize the respo
5656
- You can additionally track other changes like ownership and more by selecting any [group relationship](../resources/group.md#relationships) of type **directoryObject collection**.
5757
- Only the **id** property of the related resource is returned.
5858
- There's limited support for `$filter`:
59-
- The only supported `$filter` expression is for tracking changes on a specific object: `$filter=id+eq+{value}`. You can filter multiple objects. For example, `https://graph.microsoft.com/v1.0/groups/delta/?$filter= id eq '477e9fc6-5de7-4406-bb2a-7e5c83c9ffff' or id eq '004d6a07-fe70-4b92-add5-e6e37b8affff'`. There is a limit of 50 filtered objects.
59+
- The only supported `$filter` expression is for tracking changes on a specific object: `$filter=id+eq+{value}`. You can filter multiple objects. For example, `https://graph.microsoft.com/v1.0/groups/delta/?$filter=id eq '477e9fc6-5de7-4406-bb2a-7e5c83c9ffff' or id eq '004d6a07-fe70-4b92-add5-e6e37b8affff'`. There is a limit of 50 filtered objects.
6060

6161
## Request headers
6262

0 commit comments

Comments
 (0)