Notice
Recent Posts
Recent Comments
Link
250x250
반응형
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
Tags
- 그래프 데이터베이스
- 데이터모델링
- Neo4j
- 위협 탐지
- 정리
- 정보보안기사
- 그래프데이터베이스
- 프로그래밍
- 사이버보안
- SQLD
- 보안솔루션
- 보안 분석
- 사이버 보안
- 자격증
- 시험
- 랜섬웨어
- go
- 정보보안
- concurrency
- graph
- GraphDB
- neo4j성능
- 공부
- Database
- Golang
- 해킹
- IT보안
- security
- 보안
- cypher
Archives
- Today
- Total
목록2025/03/05 (1)
Jamie the programmer
neo4j 유용한 cypher 쿼리
labelCount, relTypeCount, propertyKeyCount, nodeCount, relCount, labels, relTypes, stats 조회CALL apoc.meta.stats() 모델 데이터 한눈에 보기CALL apoc.meta.graph 모든 relationship 타입 조회MATCH () 모든 라벨 조회CALL db.labels() 특정 노드의 라벨 조회MATCH (a: {name:'Jane Doe'})RETURN distinct labels(a)
programming/database
2025. 3. 5. 10:51