2 Repos
Pass an optional map of parameters to a Cypher query for use with prepared statements to prevent injection and enable reuse.
Distinct from Query Parameterization: Distinct from Query Parameterization: specifically parameterizes Cypher graph queries, not general SQL queries.
Explore 2 awesome GitHub repositories matching security & cryptography · Graph Query Parameterizations. Refine with filters or upvote what's useful.
Apache AGE is a graph database extension for PostgreSQL that adds openCypher graph query capabilities directly within the relational database environment. It functions as a loadable extension that translates Cypher graph traversal queries into SQL expressions, enabling users to run pattern matching and path analysis alongside standard SQL operations within a single database instance. The extension stores labeled, directed property graphs as isolated schemas with internal relational tables for vertices, edges, and labels, preventing cross-graph interference. It supports hybrid query execution
Passes parameter maps to Cypher queries for prepared statement reuse and injection prevention.
Kùzu is an embedded property graph database engine designed for high-performance analytical queries and local data management. It operates as a library within the host application process, utilizing a columnar-based storage architecture and just-in-time query compilation to execute complex graph traversals and pattern matching efficiently. By mapping database files directly into system memory, it ensures data durability and high-speed access while maintaining ACID-compliant transactional integrity. The engine distinguishes itself by integrating vector similarity search and full-text search di
Uses parameterized queries to prevent injection attacks and enable efficient reuse of pre-compiled statements.