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
  • 992 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
  • 1209 Views
  • 1 replies
  • 1 kudos

admin previliges

Hey there . i am new to neo4j  trialing with free version.when i creating roles getting " Permission has not been granted for CREATE ROLE." then i checked  show current user my role is in public but not as admin. Shall i know why i am not an admin to...

Real time recommendations using Link Prediction?

Hi Neo4j Community, I'm interested in using link prediction in GDS to power real-time product recommendations. Can link prediction in GDS be used for real-time recommendations? Or is executing it too slow? What kind of computational complexity is lin...

Import date from postgresql to neo4j

I am trying to import data from my local PostgreSQL database to neo4j: Database:graph-test Schema: os Table: operating_systems Firstly, I load the JDBC driver into the memory CALL apoc.load.driver("org.postgresql.Driver") Then, I run this query to i...

autocomplete with bloom

I have a graph db of pharmaceutical companies who with long and confusing names. When I want to use the 'near natural language' feature of the graph db I struggle with the fact that it doesn't autocomplete name suggestions. I also can't seem to copy ...

Neo4J Browser Match...Limit configuration

Hi, Please let me know if it is possible to change the default value of 25 when a node or relationship type is clicked on the left sidebar of the Neo4J Browser.  For example, if I have nodes with label "Warehouse_Type" then clicking on it, renders a ...

Neo.ClientError.Statement.SyntaxError

I have data: upload data : load csv with headers from "file:///data_latihan.csv" as rowmerge(v:Character{name: row.source})merge(t:Character{name: row.target})with v, t, rowcall{with v, t, rowwith v, t, rowwhere row.Relasi = 'Mentions'merge(t)-[:MEN...

IchsanALi_0-1660527423006.png IchsanALi_1-1660527721376.png

sum relationships in bloom

I’m new in neo4j and I need some help I have two nodes end relationship between them as invoice with invoice amount, there are a lot of invoices between two company-nodes, I need to summarize relationships amounts and use this syfer in bloom I tried ...

iliaeli by Node
  • 1344 Views
  • 10 replies
  • 0 kudos

Neo.ClientError.Statement.SyntaxError

CALL gds.degree.stream('mysna') YIELD nodeId, score where row.source= 'aniesbaswedan' RETURN gds.util.asNode(nodeId).name AS name, score AS followers ORDER BY followers DESC, name DESC limit 100 Neo.ClientError.Statement.SyntaxError Variable `row...