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

Problem with property list

Hi, i'am new in neo4j, and i have a problem. I have two nodes type, Authors and Articles. Authors' property are(name, surname, ScopusId), and Articles' property are (title, source,idScopusArticle,AuthorsId). AuthorsId is a list, and it contains the a...

Neo4J Desktop load local CSV file issue

Hello! Could someone help preserve my sanity and help me with this issue please? Have wasted a couple of days on it so far. I do not seem capable of uploading simple CSV files from the local import directory within Neo4J. I have tried multiple times ...

2X_f_f20a59bd251a83d9be62a5bffc613f63441bd3c8.jpeg
hello by Node
  • 949 Views
  • 4 replies
  • 0 kudos

Resolved! How to use apoc.create.nodes()

Am trying to create new nodes from properties of existing nodes but keep getting errors and there is 0 documentation. Could anyone please provide some pointers? MATCH (n1:IpAddress) WHERE NOT n1.GeoLocationIdObject is null WITH collect(n1) as items...

Resolved! Using a predicate within an EXISTS clause

I'm working on a Ticket system where a user can input a ticket with a message and an Admin can respond back and forth until it's resolved. I want to add an indicator to the ticket to show the user or admin if there's an unread message within the tick...

Concat attributes as string

Hi, I would like to concatenate attributes like RETURN a.x + ',' + a.y The problem is when y doesn't exist it returns null: a.x + ',' + null - returns null instead of a.x Any idea why it works this way and how to correctly concat attributes ? Regards...