-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Alternative search syntax * Added spec link * @ralfhandl's suggestion * TC 2024-04-17 * TC 2024-04-17 * TC 2024-05-29 * TC 2024-05-29 --------- Co-authored-by: Ralf Handl <[email protected]>
- Loading branch information
1 parent
4b3d0bd
commit 1e83dca
Showing
3 changed files
with
220 additions
and
205 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -748,14 +748,20 @@ | |
"UnsupportedExpressions": { | ||
"$Type": "Capabilities.SearchExpressions", | ||
"$DefaultValue": "none", | ||
"@Core.Description": "Expressions not supported in $search" | ||
"@Core.Description": "Expressions not supported in $search as specified by the standard syntax [OData-URL, section 5.1.8.1](https://docs.oasis-open.org/odata/odata/v4.02/odata-v4.02-part2-url-conventions.html#SearchExpressions)", | ||
"@Core.LongDescription": "An unsupported expression may be treated as a term to be matched even if the\n standard syntax treats it as a keyword." | ||
}, | ||
"SearchSyntax": { | ||
"$Nullable": true, | ||
"@Core.IsURL": true, | ||
"@Core.Description": "URL of the $search syntax supported by the service (null means the standard syntax [OData-URL, section 5.1.8.1](https://docs.oasis-open.org/odata/odata/v4.02/odata-v4.02-part2-url-conventions.html#SearchExpressions))" | ||
} | ||
}, | ||
"SearchExpressions": { | ||
"$Kind": "EnumType", | ||
"$IsFlags": true, | ||
"none": 0, | ||
"[email protected]": "Single search term", | ||
"[email protected]": "No unsupported expressions", | ||
"AND": 1, | ||
"[email protected]": "Multiple search terms, optionally separated by `AND`", | ||
"OR": 2, | ||
|
Oops, something went wrong.