Update KQL grammar to use new operators

This commit is contained in:
Lars Willighagen 2022-10-03 15:44:23 +02:00
parent 693d326271
commit 194d14d89d
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ For rules that are not defined in this grammar, see [the KDL grammar](https://gi
```
query := selector q-ws* "||" q-ws* query | selector
selector := filter q-ws* selector-operator q-ws* selector | filter
selector-operator := ">" | "+" | "~" | ""
selector-operator := ">>" | ">" | "++" | "+"
filter := matcher+
matcher := "top()"| "()" | identifier | type | accessor-matcher
accessor-matcher := "[" (comparison | accessor)? "]"