Michael Gurov

Results 10 comments of Michael Gurov

> Empty array, object, string > false > null, > undefined key > 0 I think the behaviour has to be as much intuitive as possible and having that in...

> But I don't see how we can allow $.key-dash without also allowing $.key-50 (and therefore allowing @.key-50 too). Maybe we should instead define a simple set of characters which...

This approach leads us to `/\w+/` character set for dot notated identifiers and the rest is covered by brackets. Problem solved )

The classic `[a-zA-Z0-9_]` as with re.ASCII parameter.

Well, adding `-` to the character set will make it impossible to use arithmetic for filter expressions like `$.foo[?(@.key-5 > 10)]`. Are we ready to reject even simplest filter arithmetic...

I believe there are two questions implied here: what is the best way to specify a date (or date/time) constant and how to convert json date to comparable value (e.g....

In my opinion the optimal way would be a function call with two parameters: date_parse(date_string, format_string). Format string should use at least these params: | Char | Meaning | Examples...

Thanks for the note but I've come to the conclusion that in case of nested aggregations the result containing similair level of aggregations makes more sense, see #8 for another...

My library's goal is to provide functionality which a) meets users' needs b) matches the specs if they are well defined or at least widely accepted as de-facto standard. Just...

Thanks, I'm going to make some sort of discussion board, taking your questions list as a base. It may take a few weeks, though.