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
  • 943 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
  • 1183 Views
  • 1 replies
  • 1 kudos

Neo4j-admin tool backup offline DBMS

Hi, I cannot understand how to backup my DBMS from Neo4j desktop. The Operations Manual is very confusing Here: Neo4j Admin - Operations Manual Neo4j Admin is located in the bin directory and is invoked as: neo4j-admin <command> But from where "invok...

ekaske by Node Link
  • 1015 Views
  • 8 replies
  • 1 kudos

Graph Catalog to Property Graph

Hi , I have a multipartite graph as shown below. How can I make this converted into a monopartite graph to run a community detection algorithm (say, WCC) and save the resultant cluster/component id number on the actual property graph as a new propert...

3X_f_d_fd2f76e53cc51a339ee53ad84c892970287d6d5e.png

Question about modeling election data

Hello everyone, I'm glad to be part of this community. I'm currently working on a project in which I have to make a model of an election, not only one election but for each one that happens in 4 years. Currently, I have modeled four entities: the can...

3X_0_8_0883ef2c554909301e04a99c8676e6e0a3dd9e06.png

Resolved! Simple question on how to return aggregations

Neo4j Community server 4.3.3 on Ubuntu 20.04 A have a question I wasn't able to resolve: Imagine to have a query like this: MATCH (a:A)-[:REL]->(b:B) WHERE b.uuid in ['u1','u2',...,'un'] RETURN a,b ORDER BY b.uuid Well, the question is: How ...

Handle whitespace in full text search

I need some help with full text search. I have created an index like so: CALL db.index.fulltext.createNodeIndex("ReasourceName",["Resource"],["name"]) I can query it and get results: CALL db.index.fulltext.queryNodes('ReasourceName', 'bmc pumping st...

Resolved! Multiple node matching

Hi. I am using Neo4j inside node JS and inside of node JS I have a list of nodes and relationships, which look like this (the structure of json can be changed if necessary) [ {name:'node name 1', id:uuid 1, ...}, // odd elements are nodes {type:...