This website uses cookies. By clicking Accept, you consent to the use of cookies.
Click Here
to learn more about how we use cookies.
Accept
Reject
Browse
Neo4j
Help
Sign In
Technical Discussions
Neo4j Graph Platform
Drivers & Stacks
Integrations
Events & Programs
Ninjas Program
Projects & Collaboration
Events
GraphAcademy
Courses & Certifications
GraphAcademy Discussions
Community Corner
Community News
About the Community
Introduce Yourself
Community Suggestions
General Discussions
Technical Discussions
Neo4j Graph Platform
Drivers & Stacks
Integrations
Events & Programs
Ninjas Program
Projects & Collaboration
Events
GraphAcademy
Courses & Certifications
GraphAcademy Discussions
Community Corner
Community News
About the Community
Introduce Yourself
Community Suggestions
General Discussions
daniela_scattar
Node
since
10-31-2020
06-01-2022
User Statistics
4
Posts
0
Solutions
0
Kudos given
0
Kudos received
Neo4j
About daniela_scattar
User Activity
Posts
Replies
Graph Data Science - Certification
03-08-2021
Hi, I got certified in Graph Data Science, where send the t-shirt? Tks Daniela
Strongly Connected Components
11-20-2020
Hello, I have this query CALL gds.alpha.scc.stream({ nodeQuery: 'MATCH (Compartment{dbId:74700})<-[:compartment]- (rle:Reaction{speciesName:"Homo sapiens"})-[:input]-> (pe:PhysicalEntity{speciesName:"Homo sapiens"}) return id(rle) AS id UNI...
Help for graph
10-31-2020
I have this image wont eliminate the node celester and The red node connect it to the blue node Is it possible to do this with neo4j?
Re: Strongly Connected Components
11-23-2020
albertodelazzari: CALL gds.alpha.scc.stream({ nodeProjection: ['AppoReaction','AppoPhysical'], relationshipProjection: 'Reactants' }) YIELD nodeId, componentId MATCH p = (pe:AppoReaction)-[:Reactants]->() WHERE id(pe) = nodeId RETURN p...