Christophe Willemsen
Christophe Willemsen
Investigate how to add a `toArray()` for repository methods so we could easily convert results to json
Issue opened as reminder References : https://github.com/graphaware/neo4j-php-ogm/issues/122 https://github.com/symfony/symfony/issues/3907 https://github.com/doctrine/DoctrineMongoDBBundle/pull/85 https://github.com/ikwattro/neo4j-ogm-symfony-security/commit/b7a85818733454aff9c9a3efcbbf0c5ad0557bd3
When using Fabric, map projections are broken if returned outside of a subquery call. With the standard movies graph : The following works : ``` MATCH (n:Person {name: "Keanu Reeves"})...
Scenario with the standard movie graph. Take the following query : ``` CALL { USE movies MATCH (n) WHERE id(n) = 1 RETURN id(n) AS id } RETURN id ╒════╕...
export GRAPHENEDB_URL=http://localhost:7474 ``` Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [com.flavorwocky.Application$$EnhancerBySpringCGLIB$$87606f25]: Constructor threw exception; nested exception is java.lang.StringIndexOutOfBoundsException: String index out of range: -18 at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:163) at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:89) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateBean(AbstractAutowireCapableBeanFactory.java:1098) ......
**Neo4j Version:** 5.15.0 **Operating System:** Any **API:** Any The following statement throws `database not found` error although the database name is escaped. ```cypher :use `movies`; ``` ``` A database with...
If I create a `POINT INDEX` and execute the following statement : ```cypher WITH point({ latitude: 17.235614712621427, longitude: -170.95281462498815 }) AS centre MATCH (n:EarthQuakeEvent) WHERE point.distance(n.position, centre) < 11_936_227 RETURN...
**Neo4j Version:** 5.13-enterprise **Operating System:** RHEL9 **API:** Irrelevant I have the following statement using a `COLLECT` subquery ```cypher PROFILE MATCH path0 = (article0)