NotImplementedError when calling toGremlin in FoldedContextField
See original GitHub issueHey guys!
First of all, thanks a lot for this awesome work. I was testing the compiler in combination with Gremlin. The following GraphQL is mentioned in your Readme, but causes a NotImplementedError when trying to generate a Gremlin statement out of it:
Animal {
name @output(out_name: "name")
out_Animal_ParentOf @fold {
_x_count @filter(op_name: ">=", value: ["$min_children"])
@output(out_name: "number_of_children")
name @filter(op_name: "has_substring", value: ["$substr"])
@output(out_name: "child_names")
}
}
Is it a bug or is it just not implemented.
Many thanks!
Issue Analytics
- State:
- Created 4 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
No results found
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hi! We started to implement our own Java based compiler for Datastax DSE Graph. I will let you know when I touch this point and create a PR.
Again many thanks! The project is really awesome!
Oh, interesting! How does filtering work, then? Assuming you’ve figured out the syntax DSE Graph uses, it shouldn’t be too difficult to add a customized Gremlin backend that can emit the correct Gremlin syntax for DSE Graph as well – I am happy to guide you in that process, if you are interested.