사이퍼 질의어

1 개요[ | ]

Cypher Query Language
사이퍼 질의어
  • Neo4j사가 개발한 선언형 그래프 질의어의 하나.
  • 2015년 10월 openCypher 프로젝트가 개설된 이후 여러 그래프 데이터베이스에 채용됨.

2 구현 예시[ | ]

3 지원되는 자료형[ | ]

  • nodes
  • relationships
  • paths
  • maps
  • lists
  • integers
  • floating-point numbers
  • booleans
  • strings

4[ | ]

MATCH (node:Label) RETURN node.property

MATCH (node1:Label1)-->(node2:Label2)
WHERE node1.propertyA = {value}
RETURN node2.propertyA, node2.propertyB

5 같이 보기[ | ]

6 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}