nestjs-query
nestjs-query copied to clipboard
Easy CRUD for GraphQL.
When setting up entities for authorization using nestjs-query I've had a few issues that have tripped me up. It would be good to get some confirmation if there's already a...
**Describe the bug** Nested items are returned as null, when they are not. Example query ``` todoItems { id name toTags { tag { id name } } } ```...
This PR provides an example / e2e test for the following issue https://github.com/TriPSs/nestjs-query/issues/307 The test recreates the issue mentionned and is currently failing because of the issue It should not...
**Is your feature request related to a problem? Please describe.** When exporting data we now have to create endpoints for all the data types, would be easier if we, just...
This PR adds fragment support to nestjs-query-graphql's `simplifyResolveInfo` method. Previously, fields only included in a fragment were missing from the QueryService `opts.resolveInfo` field. This does not affect inline fragments, as...
for https://github.com/TriPSs/nestjs-query/issues/398 anyone could take over this AI gen code and turn it into a real code.
**Is your feature request related to a problem? Please describe.** Using queryBuilder, I could do: `qb.andWhere('permission_bits & :inputPermissionBits 0', { inputPermissionBits });` but the current query filter don't support it....
I hope you won't shun this suggestion, because yes, I am assisted by AI in creating it. But, I've been working hard at all the alternatives and for what I...
is support for one to many actually already there ?
**Is your feature request related to a problem? Please describe.** I've implemented a custom `SQLComparisonBuilder` that extends the default one to provide SQL transformations for certain comparison operations. This works...