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
  • 922 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

Resolved! Apoc.export.csv.all - Export file location on a Mac

Hi, I'm executing CALL apoc.export.csv.all("movies.csv", {}) which seems to finish OK - I get "Started streaming 1 records after 1 ms and completed after 774 ms." and "Done = true" but I can't locate the file anywhere in my machine. I tried also addi...

joe1 by Node Link
  • 472 Views
  • 1 replies
  • 0 kudos

Resolved! Visualize entire graph but with one condition filter

I can visualize my entire graph in two simple ways: MATCH (n) RETURN n or MATCH p=()-->() RETURN p Of my 500 or so nodes, and about twice that in relationships, I see that there is one of my dozen or so node labels that is dominating the graph, and f...

Unsuported clause??

Ok, every query or piece of code I am trying to run in neo4j is simply not going no matter what. Then, I just tried to run the sample codes they give us for start and.... they are not running either: I typed :play movie graph and everything went fine...

Looking for Path Finding Algorithm with Neo4j

I have the following graph: I'm looking for a gds algorithm that can find inside the graph in a way, that given the start-point all end-points can be reached. Like here: So far I've tried Dijkstra Single Source & Depth First Search algorithms & Nth...

3X_2_4_241966e5c16231372ac7aa7bacd31d4f200d5f82.png 3X_d_a_da802e7c3aae2eea1be32a52ea1451997a9a8945.png

How to find similar clients?

I wonder if I can use GDS library to find similar clients; clients who have bought similar products. Perfect if I could find similarity where base is similar variety of products AND not only product types but also quantity of these products. My sampl...

Gosforth by Graph Buddy
  • 821 Views
  • 3 replies
  • 0 kudos

How to mutate with an empty list

I am new to graphql and the neo4j graphql library and could use some help. My aim is to create an optional tags fields to BlockTitle I have the following schema: type BlockTitle { id: ID! @id created_at: DateTime! @timestamp text: Strin...

Neo4j Database Administration

Hi, Could you let me know what resources shall help me with the Neo4j Database instance maintenance and administration. Like where I can locate the resources and knowledge that a Neo4j DBA should have access to. I am familiar with the graph databases...

Database uploaded but not able to work on that

Respected; Hope you are fine and doing well. Actually, when I created a database in CSV file then I can do the things that I want in Neo4j. But when uploading a dataset in Neo4j related to the video violence dataset(available: GitHub - airtlab/A-Data...

How to get sum of properties in relationship list

Hello. Can I get sum of properties in relationship list? For example, MATCH (c1:Company {name: ‘Apple’})-[r:hasVendor*]->(c2:Company) RETURN c2.name, sum(r.marketShare); But it makes error ‘type mismatch’ as blow. Type mismatch: expected Map, Node, ...

xmlsysop by Node Link
  • 1073 Views
  • 3 replies
  • 0 kudos

Copy selected nodes from bloom

Hi, I would like to highlight some nodes in Bloom and copy their ids for processing within a python script. The copy/paste from Bloom recreates the cypher query that created the selection including the relationships. Does anyone have some python cod...