Sean Mackesey
Sean Mackesey
Thanks for looking into it Brian. As for the new API, I actually like the current neo4j-core API. I looked into ActiveNode/ActiveRel a while ago and found it didn't quite...
I see-- what you are implementing seems like it would be very useful as the basis for the Neo4J adaptor for [ROM](http://rom-rb.org/). In ROM read operations return immutable Relations, which...
I'm currently working on the ROM (ruby object mapper) [adapter](https://github.com/rom-rb/rom-neo4j) for Neo4J. neo4j-core underlies this adapter. I've encountered confusing behavior: ``` ruby Neo4j::Session.query("MATCH (n) RETURN n") # query 1 Neo4j::Session.query.match('(n)').return(:n).to_enum...
Thanks @cheerfulstoic, I thought I was using the latest version but I must not have been. Using 5.1.11, I no longer see the REST hash response. Both queries now give...
So as it turns out there was a monkey patch to rom-neo4j that was causing the issue. It was coercing the results of `Query#each` to hashes but not those from...
Hi @cielavenir, Thanks for your submissions! I looked them over and have some comments. In order to make it easier to incorporate your contributions into Facets, it would help if...
I think your criticism is correct. I'd modify your suggestion to solve the integer element problem by allowing the method to take a block: ``` ruby def relative_index(value, target=nil, &block)...
I also have problems in Vue files, specifically with Pug. Some lines in Pug get detected as HTML and an HTML comment style is used. This has been discussed before...
I wrote the below function to implement this, but it does not handle edge cases well and surely does not integrate well into the TComment codebase: ``` vim function! CommentAboveOperator(type)...
This was a question about whether `dagster-pandera` supports something (it does). Solution here is to improve docs by linking the API doc from the guide and also emphasizing that either...