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.

akaur
Node Link
since ‎10-27-2020
‎06-01-2022

User Statistics

  • 12 Posts
  • 0 Solutions
  • 5 Kudos given
  • 2 Kudos received

User Activity

Hi, I am wondering how to replace SQL features in Neo4j Creating default constraint while creating a new table.for example- if no value is entered for a property while creating a new node, it is automatically set to integer 1. I am aware that it is ...
Hello, I am trying to auto generate unique ids. Right now I am using this query: MERGE (i:UserIds {value:"userid"}) ON CREATE SET i.user_id = 1 ON MATCH SET i.user_id = i.user_id + 1 CREATE (u:User {userid:i.user_id, Name:'XYZ', Email:'test@gmail.com...
Hi, I am trying to visualize my neo4j database from another computer that is connected to same server. While I am able to successfully establish remote connection, I am not able to view any data(nodes/relationships) that I have created in my original...
Hi, I am trying to delete the nodes that were created mistakenly. But surprisingly, when I am deleting nodes, it is still visible in Graph Schema and Left database info tab too. However, when I am trying to list the elements, using Match(n) return n,...
Hi, I am trying to export data from MS SQL. And I am getting an error while establishing the connection- Error: Could not find or load main class org.neo4j.etl.rdbms.Support I am not sure what the error refers to?