kuzu icon indicating copy to clipboard operation
kuzu copied to clipboard

Embeddable property graph database management system built for query speed and scalability. Implements Cypher.

Results 285 kuzu issues
Sort by recently updated
recently updated
newest added

Continuing an issue from here: https://github.com/kuzudb/kuzu/pull/4166#pullrequestreview-2276856794. In short, I think it would be helpful to standardize how we refer to namespaces, and maybe also look at doing some re-organization of...

This mainly comes out of my frustration with github's notification settings. Watching the whole repository inundates my inbox with far too many notifications, and just watching mentions and PRs/issues I'm...

Currently, the limit on the number of cached warnings (configurable using `CALL warning_limit={value}`) is applied per-connection. We should discuss if it is more user-intuitive for this limit to apply per-query...

usability

### API Python ### Description Currently if we use Kùzu's LlamaIndex `KuzuPropertyGraphStore`, we can only create an EntityNode which has the following allowed fields: ``` id STRING, name STRING, label...

feature

### Description I can't find documentation for COUNT(DISTINCT x) as in: ``` MATCH (a:Person)-[e:Knows*1..2]->(b:Person) WHERE a.ID = 0 RETURN Count(DISTINCT b) ``` It is not clear that this can be...

documentation

### API Rust ### Description We propose enhancing the Rust client for Kuzu DB by implementing async/await support and adding a connection pool. These improvements would significantly enhance the developer...

feature

### API Node.js ### Description ULID and UUID V7 are a better option for using as a primary key then UUID V4.

feature

### API Node.js ### Description Kùzu’s Python API supports the registration of User Defined Functions (UDFs), allowing you to define custom functions in Python and use them in your Cypher...

feature

### API Node.js ### Description Neo4J and other cypher based graph databases have built-in support for handling spatial values (POINT values), which can be stored as properties on nodes and...

feature

### API Node.js ### Description A CHECK constraint ensures that values in a column or a group of columns meet a specific condition. A check constraint allows you to enforce...

feature