Slides da palestra – Integrando Neo4j com NodeJs

0

Confira os slides da palestra realizada no dia 19/04 sobre sistemas de recomendação com Neo4j 3.x e integrações com Api’s rest em NodeJS

Veja também os comandos utilizados para o HandsOn:
// Movie Graph
:play movie-graph

Match
MATCH (tom {name: "Tom Hanks"}) RETURN tom

Limit
MATCH (n:Movie) RETURN n LIMIT 25

Insert Node
CREATE (Jhonathan:Person {name:'Jhonathan Soares', born:1990})

Insert Relationship
MATCH (p:Person {name:'Jhonathan Soares'}), (m:Movie {title:'The Matrix'})
CREATE (p)-[:ACTED_IN {roles:['Figurant']}]->(m)


Shortestpath
MATCH (jhonathan:Person { name:'Jhonathan Soares' }),(keanu:Person { name: 'Keanu Reeves' }), p = shortestPath((jhonathan)-[*..15]-(keanu)) RETURN p


Execution Plan
EXPLAIN MATCH (jhonathan:Person { name:'Jhonathan Soares' }),(keanu:Person { name: 'Keanu Reeves' }), p = shortestPath((jhonathan)-[*..15]-(keanu)) RETURN p


Um grande abraço a todos!
Compartilhe.

Sobre o autor

Criador do blog Código Simples e com mais 9 anos de experiência em TI, com títulos de MVP Microsoft na área de Visual Studio Development, Neo4j Top 50 Certificate, Scrum Master e MongoDB Evangelist. Atuando em funções analista, desenvolvedor, arquiteto, líder técnico e gestor de equipes. Mais informações em : http://jhonathansoares.com