cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

haddadahmed1994
Node Link
since ‎08-26-2018
‎06-01-2022

User Statistics

  • 6 Posts
  • 2 Solutions
  • 0 Kudos given
  • 3 Kudos received

User Activity

I have created a geohash graph for NYC Cabs data, now the next step is to plot it within a map, for that i choosed to use Leaflet as a javascript mapping library. my problem is getting data from Neo4j database to JavaScript code. i found in stackov...
I am trying to create a geohash graph with level 5 of zoom from an existing one with level 7. i tried this code : FROM GRAPH mergedGraph MATCH (from)-[via]->(to) CASE WHEN substring(from.geohash,0,5)=substring(to.geohash,0,5) THEN CONSTRUCT CRE...
I am using Neo4j/Cypher , my data is about 200GB , so i thought of scalable solution "spark". Two solutions are available to make neo4j graphs with spark : Cypher for Apache Spark (CAPS) Neo4j-Spark-Connector I used the first one ,CAPS . The pr...