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
  • 900 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
  • 1147 Views
  • 1 replies
  • 1 kudos

Load CSV files when behind Corporate Proxy

neo4j version, desktop version, browser version: Docker 4.0.4which plugins / extensions / procedures do you use: load csv So I'm running in Docker behind a corporate proxy. The http_proxy and https_proxy ENV variables are set, but Neo4j doesn't seem ...

Resolved! Modify graph algorthims?

Hello everyone, I am new in the community, i would like to ask is there a way i could modify the code of Louvain Modularity graph algorithm and apply the modified version on my neo4j query? If yes can someone provide me a reference or explain how to ...

Resolved! Check if path exist or not

How can I check if a path exist or not. I have this query but not success MATCH path = ((u:User)-[:HAS]->(s:Service)-[:PAID]->(c:Charged)) CALL apoc.case([length(path) = 0, "RETURN 'pending payment'"], "RETURN 'Already paid'") YIELD value RETURN valu...

Is the word "name" a key word in CQL?

Simply creating a node with the attribute "name" results in the neo4j browser showing that name but if I call the attribute "namefoo" then the namefoo attribute is not shown on the node. Does "name " mean something to Cypher?

Label or Node?

Hi, I need to add the concept of tags in my data structure. I have "Group" nodes and I want to classify them with tags. Since in my case the tag would only have the "name" attribute, I thought there are two different ways to do this: create a new "Ta...

drew by Node Link
  • 621 Views
  • 4 replies
  • 1 kudos

My count() query is too slow

Hello. Thanks in advance if anyone help me with this. -- Status -- I have 1.5M Document nodes, 4.6M Keyword nodes, and 242M relations between them in Neo4j 4.1.9 Community Edition, and all properties are indexed. Documents nodes have created date pr...

xmlsysop by Node Link
  • 1532 Views
  • 6 replies
  • 3 kudos

Decoupling two queries

I want to run two independent queries in the same query. First I want to create nodes using the nodesData object and then I want to create some relationships using edgesData. Running the two queries one by one gives expected result but combining them...

y-pankaj by Node Link
  • 450 Views
  • 1 replies
  • 0 kudos

Resolved! A* algo no longer supported in gds?

gds.alpha.shortestPath.astar.stream returns error: There is no procedure with the name gds.shortestPath.astar.stream registered for this database instance. Please ensure you've spelled the procedure name correctly and that the procedure is properly d...

Unattached Property Key

HI, It appears as if I have property key that is not attached to anything. MATCH (n) WHERE EXISTS(n.ter) RETURN DISTINCT "node" as entity, n.ter AS ter LIMIT 25 UNION ALL MATCH ()-[r]-() WHERE EXISTS(r.ter) RETURN DISTINCT "relationship" AS entity, r...