Created
July 3, 2020 20:54
-
-
Save joepie91/44d8f8a94f1642cf4b8f8c2049e82b95 to your computer and use it in GitHub Desktop.
Revisions
-
joepie91 revised this gist
Jul 3, 2020 . 1 changed file with 3 additions and 19 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,25 +1,9 @@ query = select("projects", anyOf([ where(anyOf([{ number_one: niceNumbers, number_two: niceNumbers }, { number_three: anyOf([ 42, column("number_one") ]), number_four: moreThan(1337) }])) ])); -
antishok created this gist
Jul 3, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,25 @@ query = select("projects", [ anyOf([ where({ number_one: niceNumbers, number_two: niceNumbers }), where({ number_three: anyOf([ 42, column("number_one") ]), number_four: moreThan(1337) }) ]) ]); query = select("projects", anyOf([ where({ number_one: niceNumbers, number_two: niceNumbers }), where({ number_three: anyOf([ 42, column("number_one") ]), number_four: moreThan(1337) }) ]));