Tycho Bokdam
Tycho Bokdam
Hmm, could it be cause it is adding things to the changelog (the documentation and ci ones) and that therefore it has content and is going to bump it as...
You can create the type yourself or use [graphql-type-json](https://www.npmjs.com/package/graphql-type-json)
Your custom query service should also extend for example the `TypOrmQueryService`, if you look at that [`createOne` ](https://github.com/doug-martin/nestjs-query/blob/master/packages/query-typeorm/src/services/typeorm-query.service.ts#L133) method you see it indeeds creates the record.
I'm actively using it and also created multiple PR's, never got an answer on any of them. So I don't think so :(
@smolinari what parts are you interested in?
@smolinari I do have a fork of this package [here](https://github.com/TriPSs/nestjs-query) that already has some fixes and i'm planning to fix more in it. It's not yet published some where (I...
@GP4cK it currently is :) I do have to note that I created a breaking change, still need to document this, but the change is that if the item is...
Yes: https://www.npmjs.com/package/@ptc-org/nestjs-query-core https://www.npmjs.com/package/@ptc-org/nestjs-query-graphql https://www.npmjs.com/package/@ptc-org/nestjs-query-typeorm https://www.npmjs.com/package/@ptc-org/nestjs-query-typegoose https://www.npmjs.com/package/@ptc-org/nestjs-query-mongoose https://www.npmjs.com/package/@ptc-org/nestjs-query-sequelize
@meodemsao Issues/PR's that are merged/released: - #1504 - #1437 - implemented feature to disable filtering and sorting, see https://github.com/TriPSs/nestjs-query/pull/10 - #1303 - Fixed `between` filter not working when using custom...
This is because `between` is/was not working when defining them yourself in `allowedComparisons`, this is fixed in my fork with [this pr](https://github.com/TriPSs/nestjs-query/pull/7)