Javier de la Rosa

Results 76 comments of Javier de la Rosa

It would be great if the Software Discovery Dashboard included options to search for reference implementations of published papers, by looking up the authors names, DOIs, or titles of the...

Definitively very useful for leaderboards :raising_hand:

Hi, unfortunately `neo4jrestclient` does not support the new Neo4j authorization. The only option so far is to disable it in the Neo4j config until I get the time to implement...

That's because the REST API doesn't support storing objects as properties values other than plain numbers, booleans, and strings. Plus, Neo4j doesn't store either null or empty property values.

Does that work through the REST API using the API methods and not Cypher queries? I'll double check.

Just tried with 2.2.10 and 2.3.7 and got this: ``` $ curl -H "Content-Type: application/json" -X POST http://localhost:7474/db/data/node -d '{"prop": []}' { "message" : "Unable to set property 'prop' to...

It looks like I should check whether `element` is `None` before getting `element["self"]`. In the meantime you could try casting to `neo4jrestclient.constants.RAW`: ```python with graph.transaction(commit=False) as tx: results = graph.query(q,...

Yes, the only indices implemented so far are legacy indices. I have to make that clearer. Thanks!

Recommended way is by using the Neo4j builtin parameter passing: ```python q = """match n-[r:`{rel}`]-() return n, n.name, r""" params = { "rel": rel_type, } results = self.gdb.query(q, params=params, returns=(client.Node,...

You are absolutely right, @franekp. Unfortunately, I don't have the time to maintain the library anymore. Any help or PR's are welcome.