Hello,
I'm using the @neo4j/graphql NodeJS library. I really like the auto-generated 'where' clause I get with the schema, however I would like to extend it an d add my own filters into the where clause. Is this possible,
I have tried defining my own filters in the schema type definition but this stops the auto-generated LT, GT, etc. I would like to have all of the existing auto-generated filters and add my own.
Is this possible? I see there are options to extend some of the filters (@queryOptions for example). Is there a general way to add my own filters in a similar way to the @queryOptions directive?
Thanks