From 0b949404755ed3f0acd0c0fcdb1b2d994070d3fb Mon Sep 17 00:00:00 2001 From: Prasanna Kumar Gollangi <6123002+pgollangi@users.noreply.github.com> Date: Fri, 3 Feb 2023 15:53:55 +0530 Subject: [PATCH] Update README.md --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 7100837..d424292 100644 --- a/README.md +++ b/README.md @@ -79,6 +79,9 @@ select * from `users` where id > 50 select id, LENGTH(contacts) as total_contacts from `users` select id, (age > 100) as centenarian as total_contacts from `users` ``` + +`FireQL` depend on [govaluate](https://github.com/Knetic/govaluate) to evaluate expressions in `SELECT`. See list of possible expressions and operators [here](https://github.com/Knetic/govaluate/blob/master/MANUAL.md#operators). + See [Wiki](https://github.com/pgollangi/FireQL/wiki) for more examples. ### Authentication