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.

dana_canzano
Neo4j
Neo4j
since ‎08-21-2018
‎02-08-2023

User Statistics

  • 991 Posts
  • 112 Solutions
  • 75 Kudos given
  • 209 Kudos received

User Activity

Learn how to render a bar chart based upon the example movies graphOver my last 2 blog posts, Zendesk to Neo4j Integration and Zendesk to Neo4j Integration : Better control over your reporting needs and building a UI, I have detailed a project I have...
When creating a constraint, for example CREATE CONSTRAINT ON (n:ZipCode) ASSERT n.name IS UNIQUE; this will require a lock on all nodes with the label the constraint is being created for, in this case ZipCode If you have another transaction which w...
The following document describes how to utilize the Zendesk API to load data from Zendesk into Neo4j, specifically data about users who have choosen to subscribe/follow Knowledge Base section(s). This document attempts to solve the issue described b...
The following can be used to extract user and role defintions from an existing database and the resultant output can be played back on another Neo4j database. <!-- //export roles --> return '//export Roles' as output union all call dbms.security.list...
The following can be used to extract index defintions and constraint defintions from an existing database and the resultant output can be played back on another Neo4j database. To extract Cypher CREATE INDEX statements run: CALL db.indexes() YIELD de...