From 194d14d89dd548c85ba1b59aaf5d4fcdef26e2c3 Mon Sep 17 00:00:00 2001 From: Lars Willighagen Date: Mon, 3 Oct 2022 15:44:23 +0200 Subject: [PATCH] Update KQL grammar to use new operators --- QUERY-SPEC.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/QUERY-SPEC.md b/QUERY-SPEC.md index 05f6db8..bf918e7 100644 --- a/QUERY-SPEC.md +++ b/QUERY-SPEC.md @@ -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)? "]"