Nick Sethi

Results 34 comments of Nick Sethi

Why do you need to use the OGM instance when you can get a schema back from the Neo4JGraphQL class? ```typescript const neoSchema = new Neo4JGraphQL({ ... }) const schema...

I got it to work by adding "after" as an argument to the filters option which causes it to refetch the entire query with the after arg. ```graphql fragment Example_query...

Just to chime in with some information, I get this as well when ctrl+c'ing on a new line, but with the following details: ![image](https://user-images.githubusercontent.com/1900476/142142699-1ad3e6eb-3864-405c-ba07-1ac1b6ca8405.png)

So I think this is a neovim issue -- see neovim/neovim#16416 Apparently the solution is to use the following workaround: ``` inoremap ```

The above is a little verbose but eliminates the duplication of my limit / offset problem. For someone that doesn't have that much relay experience you've created some super useful...

Whoops, accidentally closed and opened the issue when trying to respond to the comments above. My apologies. Wanted to contribute and say that I agree with @tejo-ak's comments in that...

I am admittedly not a typescript expert, but I did not think that utilizing already existing typescript relationships (e.g., we already define what the relationships are and what alias key...

Appreciate the response! I'm sure that the querybuilder match related function will work in the meantime but I confess I'm having a hard time figuring out how to build the...

> If you're still sure you won't add page-based (`offset`) to `Connection` fields, I think that a working example/repository would be necessary for beginners like me. They might not be...

I'm not sure what you are trying to do. Yes a cursor is an opaque string whereas an offset is a number. But in either case, you are passing in...