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
  • 966 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
  • 1195 Views
  • 1 replies
  • 1 kudos

Resolved! Designing a database

Hi everyone I'm Alain and new here. I started to learn Neo4j and this database is really awesome. I think it would fit for the project I'm starting to work on. The project consists in creating a deckbuilder for a new TCG (trading card game) and I nee...

What is "error code: 1003"?

I have encountered this response – "error code: 1003" – when querying a Neo4j instance (running Community 4.4.7, hosted in GCP) from a cloud function (in Cloudflare) using HTTP. The instance itself is up, I can curl it directly from outside of GCP, g...

kaan by Node
  • 652 Views
  • 1 replies
  • 0 kudos

Resolved! create relationships from csv with distinct node

Hello,  I have a CSV file as below:     node01,relationship,node02 A_01,B_dependency,B_01 A_02,B_dependency,B_02 A_03,A_dependency,A_01 A_03,A_dependency,A_02 A_04,B_dependency,B_04     I hope the graphe like below: 001               My cypher code :...

001.png 002.png

How to import Cypher script into Neo4j AuraDB

Hello,  I am just starting to use neo4j AuraDB, and I didn't find where I can import Cypher script. I tried the apoc.cypher.runFile suggested in this link, but unfortunately I got the error saying that "There is no procedure 'apoc.cypher.runFile' not...

yuxin by Node
  • 568 Views
  • 1 replies
  • 0 kudos

Computed Property from JWT e.g. tid

Hi,I am using GraphQL library for Neo4j.How can I define a property on a type (e.g. tenantId: String!) which will take its value from the 'tid' property of the jwt auth token?I currently use a '@bind' on the $jwt.sub but ideally, the 'tenantId' field...

Get relations of nodes found with a fulltext query

Greetings dear community,I would like to ask about how I can get relations of nodes found by means of a full text query, here is how my query looks like:CALL db.index.fulltext.queryNodes("SearchIndex", "*p0420*") YIELD nodeWHERE node.isHidden IS NULL...