neogma icon indicating copy to clipboard operation
neogma copied to clipboard

Object-Graph-Mapping neo4j framework, Fully-typed with TypeScript, for easy and flexible node and relationship operations

Results 23 neogma issues
Sort by recently updated
recently updated
newest added

Hi, I am wondering if there is some way of enforcing primary key uniqueness when running a creation method multiple times? Validation does not prohibit creating nodes with identical primary...

question

Hi everyone, I know that total count/quantity with raw cypher queries is not the easiest/prettiest thing in Neo4j. I was wondering if there's a way to get the total count...

question

Hello, Now that you have a set of APIs for relationships, it become a necessity to add another: `deleteRelationship`, which, doesn't seems to be there now. Thanks for considering. Regards,

feature

I have a Node.js application and Neo4j running through `docker compose`, they are in the same network so I thought I wouldn't encounter any issues. But neogma fails to connect...

dependencies

Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. Commits 7efb22a 1.2.6 ef88b93 security notice for additional prototype pollution issue c2b9819 isConstructorOrProto adapted from PR bc8ecee test from prototype pollution PR See full...

dependencies

So I'm building a graphql layer on top of my db using neogma instead of going with the @neo4j/graphql package. One feature I've seen in a different ogm Neode is...

feature

https://github.com/themetalfleece/neogma/blob/c237b200b50a5d2eba9d062fd5fd728a39bb8cf2/src/ModelOps/ModelOps.ts#L487 Here is my model schema: ```ts { id: { type: 'string', uniqueItems: true, required: true, }, name: { type: 'string', required: true, uniqueItems: true, }, createdAt: { type: 'number',...

feature

I could be wrong but there does not seem to be a way to build an [ON CREATE ](https://neo4j.com/docs/cypher-manual/current/clauses/merge/#query-merge-on-create-on-match) query like this ```cypher MERGE (keanu:Person {name: 'Keanu Reeves'}) ON CREATE...

feature

Hello, Are you considering the possibility to add indexing declaration in the model (schema) More or less like the Sequelize's below https://sequelize.org/master/manual/indexes.html. I won't expect a composite index. A single...

feature