André Bierlein

Results 32 comments of André Bierlein

I think it should really only serialize everything returned by fieldsOf, because why would I want to serialize implicit fields? Maybe do that as default, and use opToJSON if that...

I see what you mean. Another thing though, toJSON currently fails for tables containing functions. Shouldn't it just ignore those? And if so, I wouldn't see a problem with applying...

I'm not sure if that's really custom behavior. JavaScript does the same actually: http://jsfiddle.net/kS6rG/ It just dumps everything it can, and ignores the rest. About the initialization, I just started...

From what I can tell C doesn't have the WIthA query option. To be more specific, what I actually need is to filter on both A and C. Is there...

I see. Please just for me to fully understand the constraints for a possible implementation, is there any reason that this: ```golang Where(kallax.In(Schema.C.Property, 5)) ``` should _not_ be resolved against...

Sure, sounds like a good plan! Holidays are over soon, so I don't really know how much time I'll have left, but I might try to implement a PoC for...

@bep I've been using https://dependabot.com/ for a while (it became free after Github acquired them). Assuming you are on Github, it's just a couple clicks to install and it will...

Ran into the same today, is there any workaround? In my case it's complaining about this one: https://unicode-table.com/en/1F44D/

Ok, I worked around it by modifying [a line in core.py](https://github.com/jorgebastida/awslogs/blob/c190641dee80f4955f4fc779af49efda5abfe52e/awslogs/core.py#L120) and basically hard-code a pattern to exclude that specific character: ```python kwargs['filterPattern'] = "-👍" ```