Results for cypher
This question follows up on @cybersam's answer to one of my previous questions, however no previous knowledge about this problem is necessary. In a ...
I'm trying to replicate an SGF game tree on Neo4j with Cypher. The tree is of this shape: type GameTree = { id: number; data: { [key: string]: str...
I'm working with a Neo4j database with a data model with GAP and SCENARIO nodes. Each GAP node has a "next" property that lists the keys of connected ...
I have done a number of different queries but am trying to copy all the relationships between my two nodes r to rn (where there is a Rel_Office label)...
Suppose I had two nodes: A and B. Now suppose I had two relations that are similar: A -r1-> B A -r2-> B How do I make a query that returns just a path...
Is it possible to return count() from Cypher pattern comprehension ? The following query doesn't work: [ (:Vacancy)[rpp:POTENTIAL_PROFILE]-(childD) | ...
I have created a graph in neo4j community edition running in a docker container in my local using below cypher. create (a:Account{name:'account.a'}), ...
I'm using NeoDash, and I want to generate a graph report where each node size is weighted by the number of neighbors. So this count must become a prop...
I am trying to add support for the following query for an AGE project that converts Cypher queries to SQL: MATCH p=({name: 'agens-graph'})-[{lang: 'ja...
I am trying to execute a Cypher query on my Apache AGE graph database using the cypher function in PostgreSQL, but I am encountering an error. Here is...
This is the data setup: select * from cypher('test', $$ CREATE (david:Person {name: 'David'}) CREATE (alice:Person {name: 'Alice'}) CREATE (bob:Person...
Is it possible to avoid calling almost the same query twice - one time for count for pagination and then for the actual data, and combine them into th...
I am trying to access neo4j using neo4j python driver.I am running the following code to get a property of a thing A., I open the driver and session d...
I have the following params set: :params "userId":"15229100-b20e-11e3-80d3-6150cb20a1b9", "contextNames":[{"uid":"94e71bf0-1e7d-11e9-8f33-4f0c99ea0da...
What is the best way to cleanup the graph from all nodes and relationships via Cypher? At http://neo4j.com/docs/stable/query-delete.html#delete-delet...
Is it possible to extract in a single cypher query a limited set of nodes and the total number of nodes? match (n:Molecule) with n, count(*) as nb l...
How do I undo the most recent local commits in Git?
How can I remove a specific item from an array in JavaScript?
How do I delete a Git branch locally and remotely?
How can I find all files containing a specific text (string) on Linux?
How to find all files containing specific text (string) on Linux?
How do I revert a Git repository to a previous commit?
How do I create an HTML button that acts like a link?
How do I check out a remote Git branch?