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.

babu_ganesh0708
Node Clone
since ‎08-29-2018
‎06-01-2022

User Statistics

  • 33 Posts
  • 1 Solutions
  • 5 Kudos given
  • 4 Kudos received

User Activity

Hi All, I am running neo4j 3.5.7 community version via helm package.. I am using stable helm charts, helm repo add stable https://kubernetes-charts.storage.googleapis.com/ and below is the command i am using to install helm helm install --name neo4j-...
Hi All, I am trying to setup neo4j in kubernetes using the helm charts and below is the values.yaml file I have used and modified few things like installing plugin and adding extra vars, # Default values for Neo4j. # This is a YAML-formatted file. # ...
Hi All, As I was tried to push data to Elasticsearch by using the below neo4j-Elasticsearch integration, GitHub neo4j-contrib/neo4j-elasticsearch Neo4j ElasticSearch Integration. Contribute to neo4j-contrib/neo4j-elastic...
Hi All, Is there any tool or way to push data from elasticsearch index to neo4j db? I couldn't find any right approach to create nodes in neo4j from elasticsearch. If you could share any reference documents it will be very helpful and kindly let me k...
Hi All, I am trying to show the top 10 node in the graph and below is the query I tried in neo4j browser, MATCH (p1:Username)-[r:sent]->(p2:Username) RETURN p1, count(*) AS count ORDER BY count DESC LIMIT 10 As below image shows the top 10 nodes w...