Adam Cowley

Results 42 comments of Adam Cowley

This will work with a cloud install of Neo4j - you just need to make sure you use the right protocol. If you load the app inside Desktop then it'll...

Yeah this raises some interesting questions on how this library would be used or could be improved to be more class/decorator oriented like prisma/typegoose. I'm trying to work out whether...

I've started experimenting over here - it's basic at the moment but there are a few lines in the README and a couple of tests. It's quite far removed from...

Drivine looks handy for transaction management but it still requires that you write your own queries - something that I'd personally like to avoid if possible by defining the model...

I've put together a basic example with the typescript repo at https://github.com/adam-cowley/neode-ogm-test - [OGM module to register Neode inside the Nest app](https://github.com/adam-cowley/neode-ogm-test/blob/main/src/ogm/ogm.module.ts) - [User Entity](https://github.com/adam-cowley/neode-ogm-test/blob/main/src/auth/user/user.entity.ts) - [User Service](https://github.com/adam-cowley/neode-ogm-test/blob/main/src/auth/user/user.service.ts) - [Auth...

All feedback welcome... https://github.com/adam-cowley/neode-ogm-test/issues/3

What are you trying to do? There is an update method on nodes and relationships to set properties. ``` const node = neode.find('User', 1); node.update({ property: 'value' }); ``` In...

I like this idea. I will see if I can find some time to implement it. If you need it imminently, feel free to submit a PR.

What is the message on those error messages?

Try ```js .catch((err) => console.log(err.errors.map(error => error.message)) ``` That should give you some more info on what has actually gone wrong