Hello, I'm trying to figure out how to use the SHACL validation to validate fields on an edge.
For example, with the following data, how would I validate that the performanceRating exists and is in a range of 1-5?
CREATE (:Person {name: "Emil"})-[:ACTED_IN {performanceRating: 4}]->(:Play { title: "Macbeth", released: "2020"})
Thanks, John
Hi all,
This feels like a serious case of RTFM, but I can't seem to find the answer to a rather silly question.
I am trying to display the entire graph in http://localhost:7474/browser/ , so I entered MATCH (n) RETURN n and it shows a large graph, however, not complete. If I double click on nodes, I see more edges and more nodes popping up. I searched some more and found MATCH (n) OPTIONAL MATCH (n)-[r]-(m) RETURN n,r,m , but that returned pretty much the same result, and I could expand nodes by double clicking on them..
What am I missing?
Thanks!
Hi,
I am wondering if when giving privileges to a role i am able to provide a where clause when granting/denying READ and TRAVERSE privileges. for example
GRANT TRAVERSE
ON GRAPH healthcare
NODES *
WHERE n.disease = "Flu" // is This possible?
TO researcherW;
Any help will be greatly appreciated!!!!
Hello everyone,
I have a question, and I would appreciate it if you can help me.
I have modeled a graph in Neo4j as a 5-layer multipartite graph such that no two nodes of the same type(label) are connected, but nodes from different layers are.
It is a simple model like this:
5 types of nodes( i.e. 5 layers) A--> B --> C <-- D --> E.
I want to find the ( possible ) associations between the set of nodes of type A (the first in that chain) with nodes of type E (the last in that chain). I would like to ask if someone can help by suggesting a way of doing so.
I thought of centrality measures but I found that none of the supported centrality algorithms works with heterogeneous data.
Thanks in advance.
Hi, I'm new to the forum and currently on my 5th semester of my Bachelor in Data Science. My main interest within Data Science is the translation of Data Science capabilities into real business value. So as cool as projects like ' Network analysis of cycling infrastructure are from a technical point of view, I would like to do my Bachelor Thesis about a business relevant issue.
So my question to anybody that would like to help, is do you have a great idea for a thesis topic with real business value?
One idea I was thinking about was building a predictive model for salespeople's performance based past performance, client base, CRM data etc. I don't know if that is going to be to big a task or?
So any ideas? Any help is greatly appreciated.
Thank you
Chris