We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Our goal is to parse the KQL query to get AST, and then use AST to achieve some goals, e.g.: converting it into an SQL query
value
"value"
field: value
field: "value"
*
valu*
50*
OR
AND
NOT
:
>
<
>=
<=
(field: value AND number > 10)
field: (v1 OR v2)
field: https\://example.com
user.names.first
user.names:{ first: "Alice" and last: "White" }
fields.*: value
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Our goal is to parse the KQL query to get AST, and then use AST to achieve some goals, e.g.: converting it into an SQL query
value
"value"
field: value
field: "value"
*
valu*
50*
feat: add wildcard expr #7OR
AND
NOT
:
>
<
>=
<=
(field: value AND number > 10)
field: (v1 OR v2)
#2 and refactoring in refactor: tidy up the code for better readability #6field: https\://example.com
#3user.names.first
anduser.names:{ first: "Alice" and last: "White" }
#11fields.*: value
The text was updated successfully, but these errors were encountered: