Skip to content

Commit b4e996c

Browse files
authored
Merge pull request #25991 from microsoftgraph/displayName-120-char-limit
120 char limit for $filter on RDS
2 parents 1290f1c + 068ea53 commit b4e996c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

concepts/filter-query-parameter.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.reviewer: "Luca.Spolidoro"
88
ms.localizationpriority: high
99
ms.subservice: non-product-specific
1010
ms.custom: graphiamtop20, scenarios:getting-started
11-
ms.date: 04/19/2024
11+
ms.date: 12/30/2024
1212
#Customer intent: As a developer building apps that consume Microsoft Graph APIs, I want to learn how to use filter expressions to get only the items that meet specific criteria, and reduce the amount of data the app processes, improving app efficiency.
1313
---
1414

@@ -22,11 +22,11 @@ The `$filter` query parameter can also be applied against relationships like **m
2222

2323
## Operators and functions supported in filter expressions
2424

25-
Microsoft Graph supports the use of following operators and functions. However, support by individual resources and its properties or relationships may vary. In addition, some properties and relationships support `$filter` only with [advanced queries](/graph/aad-advanced-queries). See the specific resource documentation for details, and [Syntax for using the filter OData query parameter](#syntax-for-using-the-filter-odata-query-parameter) for examples of how to use these operators and functions.
25+
Microsoft Graph supports the use of following operators and functions. However, support by individual resources and its properties or relationships may vary. In addition, some properties and relationships support `$filter` only with [advanced queries](/graph/aad-advanced-queries). See the specific resource documentation for details, and [Syntax for using the filter OData query parameter](#syntax-for-using-the-filter-odata-query-parameter) for examples of how to use these operators and functions. Also, [some limitations apply](/graph/known-issues?search=13635).
2626

2727
| Operator type | Operator |
2828
| --------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------ |
29-
| Equality operators | <ul><li> Equals (`eq`) </li><li> Not equals (`ne`)</li><li> Logical negation (`not`)</li><li> In (`in`)</li><li> Has (`has`)</li></ul> <br/><br/> **Note:** When using the `in` operator, the request is limited to 15 expressions in the filter clause by default or a URL length of 2,048 characters when using [advanced query capabilities](./aad-advanced-queries.md). |
29+
| Equality operators | <ul><li> Equals (`eq`) </li><li> Not equals (`ne`)</li><li> Logical negation (`not`)</li><li> In (`in`)</li><li> Has (`has`)</li></ul> <br/><br/> **Note:** See [query parameter limitations in the known issues](/graph/known-issues?search=13635) for limitations for `in` and `eq` operators. |
3030
| Relational operators | <ul><li> Less than (`lt`) </li><li> Greater than (`gt`)</li><li> Less than or equal to (`le`)</li><li> Greater than or equal to (`ge`)</li></ul> |
3131
| Lambda operators | <ul><li> Any (`any`) </li><li> All (`all`)</li></ul> |
3232
| Conditional operators | <ul><li> And (`and`) </li><li> Or (`or`)</li> |
@@ -245,7 +245,7 @@ The following article demonstrates the syntax for using the `$filter` OData quer
245245
| `ne` | `~/users?$filter=companyName ne null`<sup> [ ** ](#**) </sup> <br><br> `~/groups?$filter=isAssignableToRole ne true`<sup> [ ** ](#**) </sup> |
246246
| `startswith` | `~/users?$filter=startswith(userPrincipalName, 'admin')` |
247247
| `endswith` | `~/users?$filter=endswith(mail,'@outlook.com')`<sup> [ ** ](#**) </sup> |
248-
| `in` | `~/users?$filter=mail in ('mail1@domain.com', 'mail2@domain.com')` <br/><br/> **Note:** For query strings using `in` operator, the request is limited to 15 expressions in the filter clause by default or a URL length of 2,048 characters when using [advanced query capabilities](./aad-advanced-queries.md). |
248+
| `in` | `~/users?$filter=mail in ('mail1@domain.com', 'mail2@domain.com')` <br/><br/> **Note:** See [query parameter limitations in the known issues](/graph/known-issues?search=13635) for limitations for `in` and `eq` operators. |
249249
| `le` | `~/devices?$filter=registrationDateTime le 2021-01-02T12:00:00Z`<sup> [ ** ](#**) </sup> |
250250
| `ge` | `~/devices?$filter=registrationDateTime ge 2021-01-02T12:00:00Z`<sup> [ ** ](#**) </sup> |
251251
| `not` and `endswith` | `~/users?$filter=not(endswith(mail, 'contoso.com'))`<sup> [ ** ](#**) </sup> |

0 commit comments

Comments
 (0)