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
  • 855 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
  • 1118 Views
  • 1 replies
  • 1 kudos

How to paginate results of cypher, neo4j?

Hello, i am currently working with neo4j, if anybody knows how to do pagination with the results that a cypher query gives, specialy the size of the results is so big, about 100 millions. i know the methode of skip and limit and order by (which is no...

APOC export to web API

In the same way apoc imports from a URL is there a way of exporting a json to a URL CALL apoc.load.json('http://example.com/map.json', [path], [config]) YIELD value as person CREATE (p:Person) SET p = person apoc.export.json.query(query,file,config) ...

werner by Node Clone
  • 568 Views
  • 0 replies
  • 0 kudos

Time traversal path query

We are storing timestamp at edge level and node level. What are the best practices or recommendations to traverse through edges/nodes and display nodes in the same order by timestamp. Or display path of node order by timestamp in ascending order. Tha...

Resolved! Feedback on model and help modelling IT technologies

Hi I’m a freelance developer and Graph n00b. I want to create something to help me build specialised CVs (Skillmatrix, listing relevant projects and so on) for applying to jobs. And for future development; I’d like to be able to target freelance age...

2X_8_86de5b9b47ab2d2448e4b5ecd98dd3230107e78a.png 2X_7_70dd0681e39a5b3fa1e14572d1e3d0a3a9d5e5f9.png
terle by Node
  • 920 Views
  • 2 replies
  • 3 kudos

Fulltext search in relationships

Hi there, I'm currently working on a simple schema (Recipe)-[REQUIRES]-(Ingredient). I'd like to implement fulltext search on recipes with recipes[name, description ...] and ingredients [name] that only returns recipes. Can't find any example on how ...

SHORTESTPATH and ALLSHORTESTPATH

CREATE (AT:Airport { city:'Atlanta' }),(CH:Airport { city:'Chicago' }),(LA:Airport { city:'Los Angeles' }),(DA:Airport { city:'Dallas' }),(AU:Airport { city:'Austin' }) CREATE (AT)-[:ROUTE { time:22 }]->(AU), (AU)-[:ROUTE { time:35 }]->(LA), (AT)-[:R...

Shortest path

Hi all, I am looking to get a Shortest path query that will get from one node label (:Person) to an company (:Organisation), this has to happen via multiple relationship types e.g (:Person)-[:Knows]-(:Person)-[:Colleague]-(:Person)-[:Works_For]-(:Org...

skirwan by Node Link
  • 1053 Views
  • 4 replies
  • 0 kudos

Resolved! Indexing mongo IDs

I have nodes with properties as follows: uid: this mongo object ID string.typeName: a regular string field. I have created the following indexes: create index on :Document(uid) create index on :Document(typeName) create index on :Document(uid, typeNa...

Handling block device errors

Hi, I am looking for advice and/or best practice approaches to handle block device errors in a clustered environment. I am experimenting with causal clustering and noticed that the database engine does not shut down when the data volume's backing blo...