Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed description of SearchExpressions value "none" #133

Closed
Closed
Show file tree
Hide file tree
Changes from 21 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
e4e50f5
Fixed description of "none"
ralfhandl Jun 30, 2021
6e9b2bf
More explicit descriptions
ralfhandl Jun 30, 2021
8afe493
Update vocabularies/Org.OData.Capabilities.V1.xml
ralfhandl Jun 30, 2021
adfe68f
Refreshed
ralfhandl Jun 30, 2021
a04eed2
Merge branch 'main' into ODATA-1453-SearchExpressions-none
HeikoTheissen Jul 9, 2021
7de5695
Merge branch 'main' into ODATA-1453-SearchExpressions-none
ralfhandl Jul 23, 2021
ea6bc60
Merge branch 'main' into ODATA-1453-SearchExpressions-none
ralfhandl Jul 30, 2021
4676841
Merge branch 'main' into ODATA-1453-SearchExpressions-none
ralfhandl Aug 6, 2021
ee76733
Merge branch 'main' into ODATA-1453-SearchExpressions-none
ralfhandl Sep 17, 2021
9ac000e
Merge branch 'main' into ODATA-1453-SearchExpressions-none
ralfhandl Oct 14, 2021
c7917c9
Merge branch 'main' into ODATA-1453-SearchExpressions-none
ralfhandl Oct 15, 2021
cd33987
Merge branch 'main' into ODATA-1453-SearchExpressions-none
ralfhandl Dec 14, 2021
f3d9f36
Merge branch 'main' into ODATA-1453-SearchExpressions-none
ralfhandl Dec 17, 2021
4399789
Merge branch 'main' into ODATA-1453-SearchExpressions-none
ralfhandl Feb 3, 2022
c9e3eae
Merge branch 'main' into ODATA-1453-SearchExpressions-none
ralfhandl Feb 10, 2022
3eaa2d2
Merge remote-tracking branch 'origin/main' into
HeikoTheissen May 6, 2022
933ea63
Merge remote-tracking branch 'origin/main' into
HeikoTheissen Jun 24, 2022
994e623
Merge branch 'main' into ODATA-1453-SearchExpressions-none
HeikoTheissen Aug 31, 2022
38593e5
Merge branch 'main' into ODATA-1453-SearchExpressions-none
ralfhandl Sep 7, 2022
8775764
Merge branch 'main' into ODATA-1453-SearchExpressions-none
ralfhandl Dec 20, 2022
a96669e
Merge branch 'main' into ODATA-1453-SearchExpressions-none
ralfhandl Jan 10, 2023
8278fec
Merge branch 'main' into ODATA-1453-SearchExpressions-none
ralfhandl Mar 21, 2023
49bbd06
Merge branch 'main' into ODATA-1453-SearchExpressions-none
ralfhandl Apr 27, 2023
9fd5707
Merge branch 'main' into ODATA-1453-SearchExpressions-none
ralfhandl Jul 4, 2023
aa1a364
Merge branch 'main' into ODATA-1453-SearchExpressions-none
ralfhandl Sep 7, 2023
40c3d1d
Merge branch 'main' into ODATA-1453-SearchExpressions-none
ralfhandl Sep 7, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions vocabularies/Org.OData.Capabilities.V1.json
Original file line number Diff line number Diff line change
Expand Up @@ -735,18 +735,19 @@
"SearchExpressions": {
"$Kind": "EnumType",
"$IsFlags": true,
"@Core.Description": "Expressions _not_ supported in $search",
"none": 0,
"[email protected]": "Single search term",
"[email protected]": "No restrictions, all search terms are supported",
"AND": 1,
"[email protected]": "Multiple search terms separated by `AND`",
"[email protected]": "Multiple search terms separated by `AND` are not supported",
"OR": 2,
"[email protected]": "Multiple search terms separated by `OR`",
"[email protected]": "Multiple search terms separated by `OR` are not supported",
"NOT": 4,
"[email protected]": "Search terms preceded by `NOT`",
"[email protected]": "Search terms preceded by `NOT` are not supported",
"phrase": 8,
"[email protected]": "Search phrases enclosed in double quotes",
"[email protected]": "Search phrases enclosed in double quotes are not supported",
"group": 16,
"[email protected]": "Precedence grouping of search expressions with parentheses"
"[email protected]": "Precedence grouping of search expressions with parentheses is not supported"
},
"KeyAsSegmentSupported": {
"$Kind": "Term",
Expand Down
Loading