%reload_ext neo4j_cypher_query
%%cypher show full graph
CREATE (n1:Pessoa {nome:'Horácio', apelido:'Hora'})-[r:GOSTOU_DE]->(n2:Filme {titulo:'Django', ano:2012})
%%cypher show full graph
CREATE (n1:Pessoa {nome:'Zeca', apelido:'Baleiro', nome_do_pai: 'Ivo'})-[r:GOSTOU_DE]->(n2:Filme {titulo:'Bastardos Inglórios', ano:2009})
%%cypher show full graph
CREATE (cidade1:Cidade {nome:'Ilhéus'})-[r:FICA_EM]->(estado:Estado {titulo:'Bahia', populacao:150000})
%%cypher show full graph
display
%%cypher show returned graph
MATCH (irineuzinho:Pessoa {nome:'Horácio'}),
(zequinha:Pessoa {nome:'Zeca'})
CREATE (irineuzinho)-[relacionamento:CONHECE]->(zequinha)
return irineuzinho, zequinha, relacionamento
%%cypher show full graph
display
%%cypher show returned graph
CREATE (n1:Pessoa {nome_completo:'Asdrubal França', apelido:'Dubs'})-[r1:GOSTOU_DE]->(movie1:Filme {titulo:'Her', ano:2015})
RETURN n1,r1,movie1
%%cypher show full graph
display
%%cypher show returned graph
match (a)-[r]->(b)
match (c)
return a, b, c, r
%%cypher show returned graph
CREATE (node1:TipoA {propriedade1:'valor1', propriedade2:'valor2', label:'meu primeiro nó'})
return node1
%%cypher show returned graph
CREATE (node1:Pessoa {nome:'Fulano Silva', profissao:'Professor', label:'Prof. Fulano'})
return node1
%%cypher show returned graph
CREATE (node1:Pessoa {nome:'Cicrano Junior', profissao:'Engenheiro de dados', label:'Eng. Cicrano'})
return node1
%%cypher show full graph
display
%%cypher show returned graph
CREATE (person1:Pessoa {nome:'Matheus Mota', label:'Matheus'})-[r:DEU_LIKE]->(movie1:Filme {titulo:'Django', ano:2009, label:'Django'})
return person1, movie1, r
%%cypher show full graph
display
%%cypher show returned graph
CREATE (person1:Pessoa {nome:'Laura Lero', label:'Laura'})-[rel:DEU_DESLIKE]->(movie1:Filme {titulo:'The Matrix', ano:1999, label:'Matrix'})
return person1, movie1, rel
%%cypher show full graph
display
%%cypher show returned graph
MATCH (node_pessoa:Pessoa), (node_filme:Filme)
WHERE node_pessoa.nome = 'Laura Lero' AND node_filme.titulo = 'Her'
CREATE (node_pessoa)-[r:DEU_LIKE]->(node_filme)
RETURN node_pessoa, node_filme, r
%%cypher
MATCH (node_pessoa:Pessoa)-[:DEU_LIKE]->(node_filme:Filme)
RETURN node_pessoa.nome, node_filme.titulo
%%cypher
MATCH (node_pessoa:Pessoa)-[:DEU_LIKE]->(node_filme:Filme)
WHERE node_filme.titulo = 'Django'
RETURN node_pessoa.nome as nome_usuario, node_filme.titulo
# %%cypher
# match (n)-[r]->(m)
# match (x)
# delete r, n, m, x