angrykoala
angrykoala
Hi @happenslol I've given it a go to try and reproduce this behaviour and hasn't been able to I'm trying using the following typedefs: ```graphql type Movie @authorization(filter: [{ where:...
Ok, so the problem is that the context is polluted when passing the context from the top level resolver, not that it affects the directives being applied right?
Thanks @happenslol :+1:
In addition to the aforementioned problem the following inputs are also different between 10.6.1 and 10.6.2 | Input | 10.6.1 | 10.6.2 | | ------------------------ | ------ | ----------- |...
Thanks for the quick turnaround. One question: per the PR I see that some cases (e.g. "no sources should return `undefined`") are not really what I expected, that behavior is...
Well, that behavior has been how this tool has been working for a long time if I'm not mistaken, and as this particular case was not documented afaik, we assumed...
Hi @aureliomarcoag Yes, indeed adding/removing labels are some use cases that I didn't consider on `SET` and `REMOVE`. Following on your example, I'm thinking on something a bit like: ```js...
Chatting with @MacondoExpress He proposed the following alternative: ```js const movie = new Cypher.Node(); const clause = new Cypher.Match(new Cypher.Pattern(movie)).set([ movie.label("NewLabel") ]); ``` This alternative would be in line with...
Hi @bekkazy-k This is not supported at the moment. I'll discuss with the rest of the team if this is a feature we want to add to Cypher Builder In...
After some discussion, we are not going to be adding this feature for now. As mentioned before, a workaround is to replace newlines with spaces. Any further formatting should be...