neo4j-cypher
Neo4j Cypher
When to Use
Use this skill when writing, reviewing, or debugging Cypher queries for Neo4j. Covers query patterns, performance optimization, fraud-detection domain queries, and Neo4j 5+ syntax.
Core Query Patterns
MATCH and Filtering
-- Basic node match with property filter
MATCH (c:Customer {customerId: $customerId})
RETURN c
-- Relationship traversal
MATCH (c:Customer)-[:HAS_ACCOUNT]->(a:Account)
WHERE a.status = 'active'
RETURN c, a
More from michaelkeevildown/claude-agents-skills
neo4j-data-models
Neo4j graph data modeling patterns — node/relationship design, fraud detection schemas, and modeling best practices.
27neo4j-driver-js
Neo4j JavaScript driver 6.x — connection setup, session management, impersonation security, transaction functions, type handling, and result-to-UI data mapping.
8shadcn-ui
shadcn/ui component library — installation, usage patterns, theming, form integration, and accessibility.
7git-workflow
Git workflow conventions — branching strategy, commit messages, PR workflow, and rebase vs merge.
7fastapi
FastAPI — route definitions, dependency injection, Pydantic models, middleware, and async patterns.
6agent-teams
Agent Teams workflow — parallel multi-agent development with stack-aware coordination (build-first for frontend, TDD for Python/Rust), feature doc lifecycle, file ownership, and quality gates.
6