Michael Hunger

Results 538 comments of Michael Hunger

For quite a long time. Can you try the latest version.

We can easily fix it. No problem. Thanks for the feedback. Btw. sorry for the silence on your other issues, there is a lot going on with GraphConnect I pick...

I thought it did it, we also implemented OPTIONS. Could you provide an example to reproduce?

We should combine the queries from the user's QueryType with the auto-generated ones. And if there is no `@cypher` directive, we can support auto-generated queries for the return type (not...

Which aspects of ACLs would you need for the application? What should be secured and how? Would you have different neo4j users or provide different access tokens via http headers?

Good question, you might have more success with the middleware based approach in neo4j-graphql-js. We're currently also working on neo4j-graphql-java which will be available both in middleware and on servers....

It's not as easy, as you are actually filtering on a field of actor :) So it would be something like `filter: actors_contains { name : "Kevin Bacon" }}` Actually...

I implemented it please try it out and let me know if it works for you.

The filters only work on automatic fields not on @cypher annotated ones. ``` type Text { title: String! author: [Author] @relation(name:"WROTE", direction:"IN") } ```