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.

Forum Posts

Beta Opportunity for Neo4j Workspace

Introducing Neo4j Workspace We’re inviting you to check out Neo4j Workspace. Workspace combines our most powerful graph tools (Data Importer, Bloom, and Browser) all in one place to help you get up and running with graph databases faster. For experie...

Screen Shot 2022-10-14 at 12.48.07 PM.png
TrevorS by Community Team
  • 924 Views
  • 1 replies
  • 0 kudos

About the Neo4j Graph Platform Category

The Neo4j Graph Platform includes the core database and all the technologies surrounding the database, making it useful and accessible for a lot of different users. When asking a question, please select a descriptive label that best matches your quer...

Neo4j-graph-database-to-graph-platform.png
yolande by Community Team
  • 1164 Views
  • 1 replies
  • 1 kudos

Unity and Neo4j

Hi! I'm new to Unity and Neo4J. I just set up Neo4J Desktop set up on my local machine. I was wondering if anyone could help me understand how to connect it to Unity and have Unity communicate with my Neo4J database.

cm1 by Node
  • 782 Views
  • 0 replies
  • 0 kudos

How to MATCH a specific Relationship?

I have a graph where each relationship has a uuid. Eg. CREATE (n1)-[r:SOME_LABEL]->(n2) SET r.uuid= apoc.create.uuid() Is there an efficient way to find these nodes again if all I know is the uuid of the relationship? Because I don't know the Labels ...

taffyb by Node Clone
  • 915 Views
  • 3 replies
  • 0 kudos

Sandbox example code throws ServiceUnavailable error

Hi. I'm trying to start a sandbox and connect to it using python. I tried copying the example code from the templates, but I get an error: "ServiceUnavailable: Timed out trying to establish connection to ('54.236.203.202', 34896)". Example code: from...

bmm by Node
  • 581 Views
  • 0 replies
  • 0 kudos

Resolved! Create a unique id for set of nodes

How to create a unique id for set of nodes. I know there is a option for uuid, but that is specific to nodes, but I'd prefer to have an id for collection of nodes. For example: John, Mohammed, Kandhan and Ranveer are employees of department "Creators...

How to paginate intermediate nodes

Hi, thanks in advance for all the help offered at this community, it's really helpful. I couldn't quite understand what's happening with the situation below. Say there's a test data like this. Users can 'like' a certain project. CREATE (a:User),(b:Us...

Dowanna by Node Link
  • 696 Views
  • 1 replies
  • 0 kudos

Resolved! String comparison performance

Hi all, I am wondering about the performance of the following string comparison in where clause: Case 1: MATCH (p: Person) WHERE NOT p.name='Person 1' AND NOT p.name='Person 2' RETURN p Case 2: MATCH (p: Person) WHERE NOT (p.name='Person 1' OR p.nam...

Faster way to add many edges to particular node?

I have a query being built up through python that looks something like this: for url in urls: q = '''Match (u:User) Where u.id=18284 Merge (:Url {{ url:"{url}" }})<-[:CONTAINS_URL]-(u)''' tx.run(q) It seems wasteful to have to Ma...

Rogie by Node Link
  • 539 Views
  • 1 replies
  • 0 kudos