@ptc-org/nestjs-query-graphql 0.30.1 → 1.0.0-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +149 -149
- package/README.md +4 -4
- package/package.json +7 -6
- package/src/auth/authorizer.d.ts +26 -0
- package/src/auth/authorizer.js +12 -0
- package/src/auth/authorizer.js.map +1 -0
- package/src/auth/default-crud.authorizer.d.ts +6 -0
- package/src/auth/default-crud.authorizer.js +74 -0
- package/src/auth/default-crud.authorizer.js.map +1 -0
- package/src/auth/index.d.ts +3 -0
- package/src/auth/index.js +7 -0
- package/src/auth/index.js.map +1 -0
- package/src/auth/tokens.d.ts +3 -0
- package/src/auth/tokens.js +8 -0
- package/src/auth/tokens.js.map +1 -0
- package/src/common/dto.utils.d.ts +15 -0
- package/src/common/dto.utils.js +32 -0
- package/src/common/dto.utils.js.map +1 -0
- package/src/common/external.utils.d.ts +10 -0
- package/src/common/external.utils.js +33 -0
- package/src/common/external.utils.js.map +1 -0
- package/src/common/index.d.ts +4 -0
- package/src/common/index.js +11 -0
- package/src/common/index.js.map +1 -0
- package/src/common/object.utils.d.ts +1 -0
- package/src/common/object.utils.js +14 -0
- package/src/common/object.utils.js.map +1 -0
- package/src/common/resolver.utils.d.ts +2 -0
- package/src/common/resolver.utils.js +19 -0
- package/src/common/resolver.utils.js.map +1 -0
- package/src/decorators/aggregate-query-param.decorator.d.ts +1 -0
- package/src/decorators/aggregate-query-param.decorator.js +21 -0
- package/src/decorators/aggregate-query-param.decorator.js.map +1 -0
- package/src/decorators/authorize-filter.decorator.d.ts +6 -0
- package/src/decorators/authorize-filter.decorator.js +67 -0
- package/src/decorators/authorize-filter.decorator.js.map +1 -0
- package/src/decorators/authorizer.decorator.d.ts +5 -0
- package/src/decorators/authorizer.decorator.js +24 -0
- package/src/decorators/authorizer.decorator.js.map +1 -0
- package/src/decorators/constants.d.ts +8 -0
- package/src/decorators/constants.js +12 -0
- package/src/decorators/constants.js.map +1 -0
- package/src/decorators/decorator.utils.d.ts +3 -0
- package/src/decorators/decorator.utils.js +21 -0
- package/src/decorators/decorator.utils.js.map +1 -0
- package/src/decorators/filterable-field.decorator.d.ts +47 -0
- package/src/decorators/filterable-field.decorator.js +53 -0
- package/src/decorators/filterable-field.decorator.js.map +1 -0
- package/src/decorators/hook-args.decorator.d.ts +3 -0
- package/src/decorators/hook-args.decorator.js +43 -0
- package/src/decorators/hook-args.decorator.js.map +1 -0
- package/src/decorators/hook.decorator.d.ts +13 -0
- package/src/decorators/hook.decorator.js +31 -0
- package/src/decorators/hook.decorator.js.map +1 -0
- package/src/decorators/id-field.decorator.d.ts +32 -0
- package/src/decorators/id-field.decorator.js +48 -0
- package/src/decorators/id-field.decorator.js.map +1 -0
- package/src/decorators/index.d.ts +21 -0
- package/src/decorators/index.js +39 -0
- package/src/decorators/index.js.map +1 -0
- package/src/decorators/inject-authorizer.decorator.d.ts +2 -0
- package/src/decorators/inject-authorizer.decorator.js +8 -0
- package/src/decorators/inject-authorizer.decorator.js.map +1 -0
- package/src/decorators/inject-custom-authorizer.decorator.d.ts +2 -0
- package/src/decorators/inject-custom-authorizer.decorator.js +8 -0
- package/src/decorators/inject-custom-authorizer.decorator.js.map +1 -0
- package/src/decorators/inject-pub-sub.decorator.d.ts +1 -0
- package/src/decorators/inject-pub-sub.decorator.js +8 -0
- package/src/decorators/inject-pub-sub.decorator.js.map +1 -0
- package/src/decorators/key-set.decorator.d.ts +3 -0
- package/src/decorators/key-set.decorator.js +13 -0
- package/src/decorators/key-set.decorator.js.map +1 -0
- package/src/decorators/query-options.decorator.d.ts +5 -0
- package/src/decorators/query-options.decorator.js +16 -0
- package/src/decorators/query-options.decorator.js.map +1 -0
- package/src/decorators/reference.decorator.d.ts +8 -0
- package/src/decorators/reference.decorator.js +36 -0
- package/src/decorators/reference.decorator.js.map +1 -0
- package/src/decorators/relation.decorator.d.ts +16 -0
- package/src/decorators/relation.decorator.js +53 -0
- package/src/decorators/relation.decorator.js.map +1 -0
- package/src/decorators/resolver-field.decorator.d.ts +11 -0
- package/src/decorators/resolver-field.decorator.js +22 -0
- package/src/decorators/resolver-field.decorator.js.map +1 -0
- package/src/decorators/resolver-method.decorator.d.ts +34 -0
- package/src/decorators/resolver-method.decorator.js +35 -0
- package/src/decorators/resolver-method.decorator.js.map +1 -0
- package/src/decorators/resolver-mutation.decorator.d.ts +10 -0
- package/src/decorators/resolver-mutation.decorator.js +21 -0
- package/src/decorators/resolver-mutation.decorator.js.map +1 -0
- package/src/decorators/resolver-query.decorator.d.ts +13 -0
- package/src/decorators/resolver-query.decorator.js +21 -0
- package/src/decorators/resolver-query.decorator.js.map +1 -0
- package/src/decorators/resolver-subscription.decorator.d.ts +7 -0
- package/src/decorators/resolver-subscription.decorator.js +18 -0
- package/src/decorators/resolver-subscription.decorator.js.map +1 -0
- package/src/decorators/skip-if.decorator.d.ts +8 -0
- package/src/decorators/skip-if.decorator.js +18 -0
- package/src/decorators/skip-if.decorator.js.map +1 -0
- package/src/federation/index.d.ts +1 -0
- package/src/federation/index.js +3 -0
- package/src/federation/index.js.map +1 -0
- package/src/federation/representation.type.d.ts +3 -0
- package/src/federation/representation.type.js +3 -0
- package/src/federation/representation.type.js.map +1 -0
- package/src/hooks/default.hook.d.ts +3 -0
- package/src/hooks/default.hook.js +13 -0
- package/src/hooks/default.hook.js.map +1 -0
- package/src/hooks/hooks.d.ts +14 -0
- package/src/hooks/hooks.js +8 -0
- package/src/hooks/hooks.js.map +1 -0
- package/src/hooks/index.d.ts +4 -0
- package/src/hooks/index.js +10 -0
- package/src/hooks/index.js.map +1 -0
- package/src/hooks/tokens.d.ts +3 -0
- package/src/hooks/tokens.js +6 -0
- package/src/hooks/tokens.js.map +1 -0
- package/src/hooks/types.d.ts +10 -0
- package/src/hooks/types.js +15 -0
- package/src/hooks/types.js.map +1 -0
- package/src/index.d.ts +11 -0
- package/src/index.js.map +1 -0
- package/src/interceptors/authorizer.interceptor.d.ts +7 -0
- package/src/interceptors/authorizer.interceptor.js +33 -0
- package/src/interceptors/authorizer.interceptor.js.map +1 -0
- package/src/interceptors/hook.interceptor.d.ts +7 -0
- package/src/interceptors/hook.interceptor.js +44 -0
- package/src/interceptors/hook.interceptor.js.map +1 -0
- package/src/interceptors/index.d.ts +2 -0
- package/src/interceptors/index.js +6 -0
- package/src/interceptors/index.js.map +1 -0
- package/src/loader/aggregate-relations.loader.d.ts +16 -0
- package/src/loader/aggregate-relations.loader.js +43 -0
- package/src/loader/aggregate-relations.loader.js.map +1 -0
- package/src/loader/count-relations.loader.d.ts +15 -0
- package/src/loader/count-relations.loader.js +42 -0
- package/src/loader/count-relations.loader.js.map +1 -0
- package/src/loader/dataloader.factory.d.ts +9 -0
- package/src/loader/dataloader.factory.js +27 -0
- package/src/loader/dataloader.factory.js.map +1 -0
- package/src/loader/find-relations.loader.d.ts +14 -0
- package/src/loader/find-relations.loader.js +42 -0
- package/src/loader/find-relations.loader.js.map +1 -0
- package/src/loader/index.d.ts +5 -0
- package/src/loader/index.js +9 -0
- package/src/loader/index.js.map +1 -0
- package/src/loader/query-relations.loader.d.ts +15 -0
- package/src/loader/query-relations.loader.js +43 -0
- package/src/loader/query-relations.loader.js.map +1 -0
- package/src/loader/relations.loader.d.ts +4 -0
- package/src/loader/relations.loader.js +3 -0
- package/src/loader/relations.loader.js.map +1 -0
- package/src/module.d.ts +31 -0
- package/src/module.js +55 -0
- package/src/module.js.map +1 -0
- package/src/providers/authorizer.provider.d.ts +3 -0
- package/src/providers/authorizer.provider.js +31 -0
- package/src/providers/authorizer.provider.js.map +1 -0
- package/src/providers/hook.provider.d.ts +5 -0
- package/src/providers/hook.provider.js +33 -0
- package/src/providers/hook.provider.js.map +1 -0
- package/src/providers/index.d.ts +3 -0
- package/src/providers/index.js +7 -0
- package/src/providers/index.js.map +1 -0
- package/src/providers/resolver.provider.d.ts +26 -0
- package/src/providers/resolver.provider.js +112 -0
- package/src/providers/resolver.provider.js.map +1 -0
- package/src/resolvers/aggregate.resolver.d.ts +16 -0
- package/src/resolvers/aggregate.resolver.js +56 -0
- package/src/resolvers/aggregate.resolver.js.map +1 -0
- package/src/resolvers/create.resolver.d.ts +57 -0
- package/src/resolvers/create.resolver.js +190 -0
- package/src/resolvers/create.resolver.js.map +1 -0
- package/src/resolvers/crud.resolver.d.ts +52 -0
- package/src/resolvers/crud.resolver.js +68 -0
- package/src/resolvers/crud.resolver.js.map +1 -0
- package/src/resolvers/delete.resolver.d.ts +32 -0
- package/src/resolvers/delete.resolver.js +186 -0
- package/src/resolvers/delete.resolver.js.map +1 -0
- package/src/resolvers/federation/federation.resolver.d.ts +4 -0
- package/src/resolvers/federation/federation.resolver.js +8 -0
- package/src/resolvers/federation/federation.resolver.js.map +1 -0
- package/src/resolvers/federation/index.d.ts +1 -0
- package/src/resolvers/federation/index.js +6 -0
- package/src/resolvers/federation/index.js.map +1 -0
- package/src/resolvers/helpers.d.ts +6 -0
- package/src/resolvers/helpers.js +38 -0
- package/src/resolvers/helpers.js.map +1 -0
- package/src/resolvers/index.d.ts +9 -0
- package/src/resolvers/index.js +20 -0
- package/src/resolvers/index.js.map +1 -0
- package/src/resolvers/read.resolver.d.ts +18 -0
- package/src/resolvers/read.resolver.js +75 -0
- package/src/resolvers/read.resolver.js.map +1 -0
- package/src/resolvers/reference.resolver.d.ts +11 -0
- package/src/resolvers/reference.resolver.js +41 -0
- package/src/resolvers/reference.resolver.js.map +1 -0
- package/src/resolvers/relations/aggregate-relations.resolver.d.ts +11 -0
- package/src/resolvers/relations/aggregate-relations.resolver.js +76 -0
- package/src/resolvers/relations/aggregate-relations.resolver.js.map +1 -0
- package/src/resolvers/relations/helpers.d.ts +4 -0
- package/src/resolvers/relations/helpers.js +10 -0
- package/src/resolvers/relations/helpers.js.map +1 -0
- package/src/resolvers/relations/index.d.ts +7 -0
- package/src/resolvers/relations/index.js +16 -0
- package/src/resolvers/relations/index.js.map +1 -0
- package/src/resolvers/relations/read-relations.resolver.d.ts +8 -0
- package/src/resolvers/relations/read-relations.resolver.js +114 -0
- package/src/resolvers/relations/read-relations.resolver.js.map +1 -0
- package/src/resolvers/relations/references-relation.resolver.d.ts +5 -0
- package/src/resolvers/relations/references-relation.resolver.js +55 -0
- package/src/resolvers/relations/references-relation.resolver.js.map +1 -0
- package/src/resolvers/relations/relations.interface.d.ts +78 -0
- package/src/resolvers/relations/relations.interface.js +3 -0
- package/src/resolvers/relations/relations.interface.js.map +1 -0
- package/src/resolvers/relations/relations.resolver.d.ts +8 -0
- package/src/resolvers/relations/relations.resolver.js +22 -0
- package/src/resolvers/relations/relations.resolver.js.map +1 -0
- package/src/resolvers/relations/remove-relations.resolver.d.ts +5 -0
- package/src/resolvers/relations/remove-relations.resolver.js +107 -0
- package/src/resolvers/relations/remove-relations.resolver.js.map +1 -0
- package/src/resolvers/relations/update-relations.resolver.d.ts +5 -0
- package/src/resolvers/relations/update-relations.resolver.js +138 -0
- package/src/resolvers/relations/update-relations.resolver.js.map +1 -0
- package/src/resolvers/resolver.interface.d.ts +47 -0
- package/src/resolvers/resolver.interface.js +14 -0
- package/src/resolvers/resolver.interface.js.map +1 -0
- package/src/resolvers/update.resolver.d.ts +23 -0
- package/src/resolvers/update.resolver.js +198 -0
- package/src/resolvers/update.resolver.js.map +1 -0
- package/src/subscription/index.d.ts +14 -0
- package/src/subscription/index.js +32 -0
- package/src/subscription/index.js.map +1 -0
- package/src/subscription/pub-sub.interface.d.ts +6 -0
- package/src/subscription/pub-sub.interface.js +3 -0
- package/src/subscription/pub-sub.interface.js.map +1 -0
- package/src/types/aggregate/aggregate-args.type.d.ts +9 -0
- package/src/types/aggregate/aggregate-args.type.js +30 -0
- package/src/types/aggregate/aggregate-args.type.js.map +1 -0
- package/src/types/aggregate/aggregate-response.type.d.ts +5 -0
- package/src/types/aggregate/aggregate-response.type.js +96 -0
- package/src/types/aggregate/aggregate-response.type.js.map +1 -0
- package/src/types/aggregate/index.d.ts +2 -0
- package/src/types/aggregate/index.js +8 -0
- package/src/types/aggregate/index.js.map +1 -0
- package/src/types/connection/array-connection.type.d.ts +4 -0
- package/src/types/connection/array-connection.type.js +20 -0
- package/src/types/connection/array-connection.type.js.map +1 -0
- package/src/types/connection/cursor/cursor-connection.type.d.ts +4 -0
- package/src/types/connection/cursor/cursor-connection.type.js +72 -0
- package/src/types/connection/cursor/cursor-connection.type.js.map +1 -0
- package/src/types/connection/cursor/edge.type.d.ts +7 -0
- package/src/types/connection/cursor/edge.type.js +36 -0
- package/src/types/connection/cursor/edge.type.js.map +1 -0
- package/src/types/connection/cursor/index.d.ts +1 -0
- package/src/types/connection/cursor/index.js +5 -0
- package/src/types/connection/cursor/index.js.map +1 -0
- package/src/types/connection/cursor/page-info.type.d.ts +6 -0
- package/src/types/connection/cursor/page-info.type.js +49 -0
- package/src/types/connection/cursor/page-info.type.js.map +1 -0
- package/src/types/connection/cursor/pager/index.d.ts +7 -0
- package/src/types/connection/cursor/pager/index.js +16 -0
- package/src/types/connection/cursor/pager/index.js.map +1 -0
- package/src/types/connection/cursor/pager/interfaces.d.ts +12 -0
- package/src/types/connection/cursor/pager/interfaces.js +3 -0
- package/src/types/connection/cursor/pager/interfaces.js.map +1 -0
- package/src/types/connection/cursor/pager/pager.d.ts +15 -0
- package/src/types/connection/cursor/pager/pager.js +83 -0
- package/src/types/connection/cursor/pager/pager.js.map +1 -0
- package/src/types/connection/cursor/pager/strategies/helpers.d.ts +6 -0
- package/src/types/connection/cursor/pager/strategies/helpers.js +24 -0
- package/src/types/connection/cursor/pager/strategies/helpers.js.map +1 -0
- package/src/types/connection/cursor/pager/strategies/index.d.ts +4 -0
- package/src/types/connection/cursor/pager/strategies/index.js +8 -0
- package/src/types/connection/cursor/pager/strategies/index.js.map +1 -0
- package/src/types/connection/cursor/pager/strategies/keyset.pager-strategy.d.ts +19 -0
- package/src/types/connection/cursor/pager/strategies/keyset.pager-strategy.js +123 -0
- package/src/types/connection/cursor/pager/strategies/keyset.pager-strategy.js.map +1 -0
- package/src/types/connection/cursor/pager/strategies/limit-offset.pager-strategy.d.ts +15 -0
- package/src/types/connection/cursor/pager/strategies/limit-offset.pager-strategy.js +88 -0
- package/src/types/connection/cursor/pager/strategies/limit-offset.pager-strategy.js.map +1 -0
- package/src/types/connection/cursor/pager/strategies/pager-strategy.d.ts +33 -0
- package/src/types/connection/cursor/pager/strategies/pager-strategy.js +3 -0
- package/src/types/connection/cursor/pager/strategies/pager-strategy.js.map +1 -0
- package/src/types/connection/index.d.ts +4 -0
- package/src/types/connection/index.js +10 -0
- package/src/types/connection/index.js.map +1 -0
- package/src/types/connection/interfaces.d.ts +60 -0
- package/src/types/connection/interfaces.js +3 -0
- package/src/types/connection/interfaces.js.map +1 -0
- package/src/types/connection/offset/index.d.ts +2 -0
- package/src/types/connection/offset/index.js +6 -0
- package/src/types/connection/offset/index.js.map +1 -0
- package/src/types/connection/offset/offset-connection.type.d.ts +4 -0
- package/src/types/connection/offset/offset-connection.type.js +68 -0
- package/src/types/connection/offset/offset-connection.type.js.map +1 -0
- package/src/types/connection/offset/offset-page-info.type.d.ts +5 -0
- package/src/types/connection/offset/offset-page-info.type.js +35 -0
- package/src/types/connection/offset/offset-page-info.type.js.map +1 -0
- package/src/types/connection/offset/pager/index.d.ts +4 -0
- package/src/types/connection/offset/pager/index.js +8 -0
- package/src/types/connection/offset/pager/index.js.map +1 -0
- package/src/types/connection/offset/pager/interfaces.d.ts +12 -0
- package/src/types/connection/offset/pager/interfaces.js +3 -0
- package/src/types/connection/offset/pager/interfaces.js.map +1 -0
- package/src/types/connection/offset/pager/pager.d.ts +12 -0
- package/src/types/connection/offset/pager/pager.js +62 -0
- package/src/types/connection/offset/pager/pager.js.map +1 -0
- package/src/types/create-many-input.type.d.ts +10 -0
- package/src/types/create-many-input.type.js +42 -0
- package/src/types/create-many-input.type.js.map +1 -0
- package/src/types/create-one-input.type.d.ts +11 -0
- package/src/types/create-one-input.type.js +42 -0
- package/src/types/create-one-input.type.js.map +1 -0
- package/src/types/cursor.scalar.d.ts +3 -0
- package/src/types/cursor.scalar.js +21 -0
- package/src/types/cursor.scalar.js.map +1 -0
- package/src/types/delete-many-input.type.d.ts +9 -0
- package/src/types/delete-many-input.type.js +31 -0
- package/src/types/delete-many-input.type.js.map +1 -0
- package/src/types/delete-many-reponse.type.d.ts +2 -0
- package/src/types/delete-many-reponse.type.js +25 -0
- package/src/types/delete-many-reponse.type.js.map +1 -0
- package/src/types/delete-one-input.type.d.ts +8 -0
- package/src/types/delete-one-input.type.js +27 -0
- package/src/types/delete-one-input.type.js.map +1 -0
- package/src/types/find-one-args.type.d.ts +8 -0
- package/src/types/find-one-args.type.js +27 -0
- package/src/types/find-one-args.type.js.map +1 -0
- package/src/types/index.d.ts +18 -0
- package/src/types/index.js +44 -0
- package/src/types/index.js.map +1 -0
- package/src/types/mutation-args.type.d.ts +5 -0
- package/src/types/mutation-args.type.js +24 -0
- package/src/types/mutation-args.type.js.map +1 -0
- package/src/types/query/field-comparison/boolean-field-comparison.type.d.ts +3 -0
- package/src/types/query/field-comparison/boolean-field-comparison.type.js +35 -0
- package/src/types/query/field-comparison/boolean-field-comparison.type.js.map +1 -0
- package/src/types/query/field-comparison/date-field-comparison.type.d.ts +3 -0
- package/src/types/query/field-comparison/date-field-comparison.type.js +112 -0
- package/src/types/query/field-comparison/date-field-comparison.type.js.map +1 -0
- package/src/types/query/field-comparison/field-comparison.factory.d.ts +11 -0
- package/src/types/query/field-comparison/field-comparison.factory.js +166 -0
- package/src/types/query/field-comparison/field-comparison.factory.js.map +1 -0
- package/src/types/query/field-comparison/float-field-comparison.type.d.ts +3 -0
- package/src/types/query/field-comparison/float-field-comparison.type.js +112 -0
- package/src/types/query/field-comparison/float-field-comparison.type.js.map +1 -0
- package/src/types/query/field-comparison/index.d.ts +8 -0
- package/src/types/query/field-comparison/index.js +12 -0
- package/src/types/query/field-comparison/index.js.map +1 -0
- package/src/types/query/field-comparison/int-field-comparison.type.d.ts +3 -0
- package/src/types/query/field-comparison/int-field-comparison.type.js +112 -0
- package/src/types/query/field-comparison/int-field-comparison.type.js.map +1 -0
- package/src/types/query/field-comparison/number-field-comparison.type.d.ts +3 -0
- package/src/types/query/field-comparison/number-field-comparison.type.js +112 -0
- package/src/types/query/field-comparison/number-field-comparison.type.js.map +1 -0
- package/src/types/query/field-comparison/string-field-comparison.type.d.ts +3 -0
- package/src/types/query/field-comparison/string-field-comparison.type.js +108 -0
- package/src/types/query/field-comparison/string-field-comparison.type.js.map +1 -0
- package/src/types/query/field-comparison/timestamp-field-comparison.type.d.ts +3 -0
- package/src/types/query/field-comparison/timestamp-field-comparison.type.js +112 -0
- package/src/types/query/field-comparison/timestamp-field-comparison.type.js.map +1 -0
- package/src/types/query/filter.type.d.ts +14 -0
- package/src/types/query/filter.type.js +103 -0
- package/src/types/query/filter.type.js.map +1 -0
- package/src/types/query/helpers.d.ts +1 -0
- package/src/types/query/helpers.js +6 -0
- package/src/types/query/helpers.js.map +1 -0
- package/src/types/query/index.d.ts +4 -0
- package/src/types/query/index.js +14 -0
- package/src/types/query/index.js.map +1 -0
- package/src/types/query/paging/constants.d.ts +5 -0
- package/src/types/query/paging/constants.js +10 -0
- package/src/types/query/paging/constants.js.map +1 -0
- package/src/types/query/paging/cursor-paging.type.d.ts +3 -0
- package/src/types/query/paging/cursor-paging.type.js +69 -0
- package/src/types/query/paging/cursor-paging.type.js.map +1 -0
- package/src/types/query/paging/index.d.ts +5 -0
- package/src/types/query/paging/index.js +12 -0
- package/src/types/query/paging/index.js.map +1 -0
- package/src/types/query/paging/interfaces.d.ts +13 -0
- package/src/types/query/paging/interfaces.js +3 -0
- package/src/types/query/paging/interfaces.js.map +1 -0
- package/src/types/query/paging/none-paging.type.d.ts +3 -0
- package/src/types/query/paging/none-paging.type.js +18 -0
- package/src/types/query/paging/none-paging.type.js.map +1 -0
- package/src/types/query/paging/offset-paging.type.d.ts +3 -0
- package/src/types/query/paging/offset-paging.type.js +43 -0
- package/src/types/query/paging/offset-paging.type.js.map +1 -0
- package/src/types/query/query-args/constants.d.ts +6 -0
- package/src/types/query/query-args/constants.js +10 -0
- package/src/types/query/query-args/constants.js.map +1 -0
- package/src/types/query/query-args/cursor-query-args.type.d.ts +5 -0
- package/src/types/query/query-args/cursor-query-args.type.js +61 -0
- package/src/types/query/query-args/cursor-query-args.type.js.map +1 -0
- package/src/types/query/query-args/index.d.ts +5 -0
- package/src/types/query/query-args/index.js +9 -0
- package/src/types/query/query-args/index.js.map +1 -0
- package/src/types/query/query-args/interfaces.d.ts +45 -0
- package/src/types/query/query-args/interfaces.js +3 -0
- package/src/types/query/query-args/interfaces.js.map +1 -0
- package/src/types/query/query-args/none-paging-query-args.type.d.ts +5 -0
- package/src/types/query/query-args/none-paging-query-args.type.js +49 -0
- package/src/types/query/query-args/none-paging-query-args.type.js.map +1 -0
- package/src/types/query/query-args/offset-query-args.type.d.ts +5 -0
- package/src/types/query/query-args/offset-query-args.type.js +60 -0
- package/src/types/query/query-args/offset-query-args.type.js.map +1 -0
- package/src/types/query/query-args.type.d.ts +8 -0
- package/src/types/query/query-args.type.js +33 -0
- package/src/types/query/query-args.type.js.map +1 -0
- package/src/types/query/sorting.type.d.ts +2 -0
- package/src/types/query/sorting.type.js +55 -0
- package/src/types/query/sorting.type.js.map +1 -0
- package/src/types/relation-input.type.d.ts +6 -0
- package/src/types/relation-input.type.js +30 -0
- package/src/types/relation-input.type.js.map +1 -0
- package/src/types/relations-input.type.d.ts +6 -0
- package/src/types/relations-input.type.js +31 -0
- package/src/types/relations-input.type.js.map +1 -0
- package/src/types/subscription-args.type.d.ts +5 -0
- package/src/types/subscription-args.type.js +24 -0
- package/src/types/subscription-args.type.js.map +1 -0
- package/src/types/subscription-filter-input.type.d.ts +9 -0
- package/src/types/subscription-filter-input.type.js +32 -0
- package/src/types/subscription-filter-input.type.js.map +1 -0
- package/src/types/type.errors.d.ts +5 -0
- package/src/types/type.errors.js +11 -0
- package/src/types/type.errors.js.map +1 -0
- package/src/types/update-many-input.type.d.ts +11 -0
- package/src/types/update-many-input.type.js +38 -0
- package/src/types/update-many-input.type.js.map +1 -0
- package/src/types/update-many-response.type.d.ts +2 -0
- package/src/types/update-many-response.type.js +25 -0
- package/src/types/update-many-response.type.js.map +1 -0
- package/src/types/update-one-input.type.d.ts +11 -0
- package/src/types/update-one-input.type.js +36 -0
- package/src/types/update-one-input.type.js.map +1 -0
- package/src/types/validators/cannot-use-with.validator.d.ts +6 -0
- package/src/types/validators/cannot-use-with.validator.js +21 -0
- package/src/types/validators/cannot-use-with.validator.js.map +1 -0
- package/src/types/validators/cannot-use-without.validator.d.ts +6 -0
- package/src/types/validators/cannot-use-without.validator.js +22 -0
- package/src/types/validators/cannot-use-without.validator.js.map +1 -0
- package/src/types/validators/index.d.ts +3 -0
- package/src/types/validators/index.js +7 -0
- package/src/types/validators/index.js.map +1 -0
- package/src/types/validators/is-undefined.validator.d.ts +3 -0
- package/src/types/validators/is-undefined.validator.js +11 -0
- package/src/types/validators/is-undefined.validator.js.map +1 -0
- package/src/types/validators/property-max.validator.d.ts +6 -0
- package/src/types/validators/property-max.validator.js +30 -0
- package/src/types/validators/property-max.validator.js.map +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,678 +3,678 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
# [0.30.0](https://github.com/
|
|
6
|
+
# [0.30.0](https://github.com/tripss/nestjs-query/compare/v0.29.0...v0.30.0) (2021-09-30)
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
### Bug Fixes
|
|
10
10
|
|
|
11
|
-
* **deps:** update apollo graphql packages ([6d40b9d](https://github.com/
|
|
12
|
-
* **query-graphql:** Custom authorizers now behave like auth decorators ([ff92b9a](https://github.com/
|
|
13
|
-
* **query-graphql:** fix eslint errors ([73acbc3](https://github.com/
|
|
11
|
+
* **deps:** update apollo graphql packages ([6d40b9d](https://github.com/tripss/nestjs-query/commit/6d40b9d10de522d7950fca8279ee2d763c17e3a5))
|
|
12
|
+
* **query-graphql:** Custom authorizers now behave like auth decorators ([ff92b9a](https://github.com/tripss/nestjs-query/commit/ff92b9ae7a0ae4fb9585bead9b778e26fbd6b95a))
|
|
13
|
+
* **query-graphql:** fix eslint errors ([73acbc3](https://github.com/tripss/nestjs-query/commit/73acbc3557d3e8cccbe7cb7e8e01dde9d4218208))
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
|
|
18
18
|
|
|
19
|
-
# [0.29.0](https://github.com/
|
|
19
|
+
# [0.29.0](https://github.com/tripss/nestjs-query/compare/v0.28.1...v0.29.0) (2021-09-09)
|
|
20
20
|
|
|
21
21
|
|
|
22
22
|
### Bug Fixes
|
|
23
23
|
|
|
24
|
-
* **query-graphql:** adapt createFromPromise typings and add tests for passing additional query params ([d81e531](https://github.com/
|
|
25
|
-
* **query-graphql:** pass original query in keyset pager strategy ([07f9e7b](https://github.com/
|
|
24
|
+
* **query-graphql:** adapt createFromPromise typings and add tests for passing additional query params ([d81e531](https://github.com/tripss/nestjs-query/commit/d81e5315cbc6e2d665256fd6dcfa09689cadd2b1))
|
|
25
|
+
* **query-graphql:** pass original query in keyset pager strategy ([07f9e7b](https://github.com/tripss/nestjs-query/commit/07f9e7b78cccc788c772776a4ced336eec016164))
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
### Features
|
|
29
29
|
|
|
30
|
-
* **graphql:** propagate correct query types throughout paging ([348044f](https://github.com/
|
|
30
|
+
* **graphql:** propagate correct query types throughout paging ([348044f](https://github.com/tripss/nestjs-query/commit/348044f8509d8aef21e4a5f55b93bd28793b0fcc))
|
|
31
31
|
|
|
32
32
|
|
|
33
33
|
|
|
34
34
|
|
|
35
35
|
|
|
36
|
-
## [0.28.1](https://github.com/
|
|
36
|
+
## [0.28.1](https://github.com/tripss/nestjs-query/compare/v0.28.0...v0.28.1) (2021-07-27)
|
|
37
37
|
|
|
38
38
|
|
|
39
39
|
### Features
|
|
40
40
|
|
|
41
|
-
* **graphql,#958,#1160:** Enable authorizers on subscriptions ([d2f857f](https://github.com/
|
|
41
|
+
* **graphql,#958,#1160:** Enable authorizers on subscriptions ([d2f857f](https://github.com/tripss/nestjs-query/commit/d2f857f73540ee400f5dcc79cbb25dfba81c2963)), closes [#958](https://github.com/tripss/nestjs-query/issues/958) [#1160](https://github.com/tripss/nestjs-query/issues/1160)
|
|
42
42
|
|
|
43
43
|
|
|
44
44
|
|
|
45
45
|
|
|
46
46
|
|
|
47
|
-
# [0.28.0](https://github.com/
|
|
47
|
+
# [0.28.0](https://github.com/tripss/nestjs-query/compare/v0.27.0...v0.28.0) (2021-07-19)
|
|
48
48
|
|
|
49
49
|
|
|
50
50
|
### Bug Fixes
|
|
51
51
|
|
|
52
|
-
* NestjsQueryGraphqlModuleOpts ([984f591](https://github.com/
|
|
52
|
+
* NestjsQueryGraphqlModuleOpts ([984f591](https://github.com/tripss/nestjs-query/commit/984f5917db5971a336054186f8a7fddc522745cc))
|
|
53
53
|
|
|
54
54
|
|
|
55
55
|
|
|
56
56
|
|
|
57
57
|
|
|
58
|
-
# [0.27.0](https://github.com/
|
|
58
|
+
# [0.27.0](https://github.com/tripss/nestjs-query/compare/v0.26.0...v0.27.0) (2021-05-12)
|
|
59
59
|
|
|
60
60
|
|
|
61
61
|
### Features
|
|
62
62
|
|
|
63
|
-
* **graphql,#1058:** Allow declaration of custom ID scalar type ([fb2ed7a](https://github.com/
|
|
63
|
+
* **graphql,#1058:** Allow declaration of custom ID scalar type ([fb2ed7a](https://github.com/tripss/nestjs-query/commit/fb2ed7aca59d66fa8827522cf81b6e31e77161d3)), closes [#1058](https://github.com/tripss/nestjs-query/issues/1058)
|
|
64
64
|
|
|
65
65
|
|
|
66
66
|
|
|
67
67
|
|
|
68
68
|
|
|
69
|
-
# [0.26.0](https://github.com/
|
|
69
|
+
# [0.26.0](https://github.com/tripss/nestjs-query/compare/v0.25.1...v0.26.0) (2021-04-13)
|
|
70
70
|
|
|
71
71
|
|
|
72
72
|
### Bug Fixes
|
|
73
73
|
|
|
74
|
-
* **graphql,auth,#1026:** Fixed auth context on deleteMany ([3d4efd4](https://github.com/
|
|
75
|
-
* **graphql,auth,#1026:** Fixed renamed export ([24b1193](https://github.com/
|
|
76
|
-
* **graphql,federation,#1051:** check for undefined as well ([298150a](https://github.com/
|
|
77
|
-
* **graphql,federation,#1051:** return null for references ([6cb832e](https://github.com/
|
|
74
|
+
* **graphql,auth,#1026:** Fixed auth context on deleteMany ([3d4efd4](https://github.com/tripss/nestjs-query/commit/3d4efd44fae7e2ee119e53884519e5b2700e9e72))
|
|
75
|
+
* **graphql,auth,#1026:** Fixed renamed export ([24b1193](https://github.com/tripss/nestjs-query/commit/24b11936014312d435b0d7f17c4237fd48c5dc52))
|
|
76
|
+
* **graphql,federation,#1051:** check for undefined as well ([298150a](https://github.com/tripss/nestjs-query/commit/298150a73571e08b9d4c3d24278a24b8aec8e62b)), closes [#1051](https://github.com/tripss/nestjs-query/issues/1051)
|
|
77
|
+
* **graphql,federation,#1051:** return null for references ([6cb832e](https://github.com/tripss/nestjs-query/commit/6cb832ebe03c4b4cc1ec133e93a39c4637c87685)), closes [#1051](https://github.com/tripss/nestjs-query/issues/1051)
|
|
78
78
|
|
|
79
79
|
|
|
80
80
|
### Features
|
|
81
81
|
|
|
82
|
-
* **graphql:** Expose setRelations mutation ([676a4d5](https://github.com/
|
|
83
|
-
* **graphql,#1048:** added filter-only option to filterable fields ([55cb010](https://github.com/
|
|
84
|
-
* **graphql,auth:** Pass operation name to authorizer [#1026](https://github.com/
|
|
85
|
-
* **graphql,auth,#1026:** Added convenience fields to auth context ([32df50e](https://github.com/
|
|
86
|
-
* **graphql,auth,#1026:** Enable authorization on create methods as well ([4c7905e](https://github.com/
|
|
82
|
+
* **graphql:** Expose setRelations mutation ([676a4d5](https://github.com/tripss/nestjs-query/commit/676a4d5fc16717ae10c8f9f8e71550f1a42d6b2e))
|
|
83
|
+
* **graphql,#1048:** added filter-only option to filterable fields ([55cb010](https://github.com/tripss/nestjs-query/commit/55cb0105a11224db1e61023762f030d5c2dae6bc)), closes [#1048](https://github.com/tripss/nestjs-query/issues/1048)
|
|
84
|
+
* **graphql,auth:** Pass operation name to authorizer [#1026](https://github.com/tripss/nestjs-query/issues/1026) ([4343821](https://github.com/tripss/nestjs-query/commit/43438218d286791059a7a5f8eb40110320bdcfca))
|
|
85
|
+
* **graphql,auth,#1026:** Added convenience fields to auth context ([32df50e](https://github.com/tripss/nestjs-query/commit/32df50e502483bd3492a2d3481786d8931556438)), closes [#1026](https://github.com/tripss/nestjs-query/issues/1026)
|
|
86
|
+
* **graphql,auth,#1026:** Enable authorization on create methods as well ([4c7905e](https://github.com/tripss/nestjs-query/commit/4c7905e2c96bf3aab1841091d44599b917ecdd56)), closes [#1026](https://github.com/tripss/nestjs-query/issues/1026)
|
|
87
87
|
|
|
88
88
|
|
|
89
89
|
|
|
90
90
|
|
|
91
91
|
|
|
92
|
-
## [0.25.1](https://github.com/
|
|
92
|
+
## [0.25.1](https://github.com/tripss/nestjs-query/compare/v0.25.0...v0.25.1) (2021-04-07)
|
|
93
93
|
|
|
94
|
-
**Note:** Version bump only for package @nestjs-query
|
|
94
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-graphql
|
|
95
95
|
|
|
96
96
|
|
|
97
97
|
|
|
98
98
|
|
|
99
99
|
|
|
100
|
-
# [0.25.0](https://github.com/
|
|
100
|
+
# [0.25.0](https://github.com/tripss/nestjs-query/compare/v0.24.5...v0.25.0) (2021-03-31)
|
|
101
101
|
|
|
102
102
|
|
|
103
103
|
### Features
|
|
104
104
|
|
|
105
|
-
* **graphql:** Add new aggregate groupBy ([922e696](https://github.com/
|
|
105
|
+
* **graphql:** Add new aggregate groupBy ([922e696](https://github.com/tripss/nestjs-query/commit/922e696df1c56d5d0181cbb769ffbfba943157dd))
|
|
106
106
|
|
|
107
107
|
|
|
108
108
|
|
|
109
109
|
|
|
110
110
|
|
|
111
|
-
## [0.24.5](https://github.com/
|
|
111
|
+
## [0.24.5](https://github.com/tripss/nestjs-query/compare/v0.24.4...v0.24.5) (2021-03-19)
|
|
112
112
|
|
|
113
|
-
**Note:** Version bump only for package @nestjs-query
|
|
113
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-graphql
|
|
114
114
|
|
|
115
115
|
|
|
116
116
|
|
|
117
117
|
|
|
118
118
|
|
|
119
|
-
## [0.24.4](https://github.com/
|
|
119
|
+
## [0.24.4](https://github.com/tripss/nestjs-query/compare/v0.24.3...v0.24.4) (2021-03-18)
|
|
120
120
|
|
|
121
|
-
**Note:** Version bump only for package @nestjs-query
|
|
121
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-graphql
|
|
122
122
|
|
|
123
123
|
|
|
124
124
|
|
|
125
125
|
|
|
126
126
|
|
|
127
|
-
## [0.24.3](https://github.com/
|
|
127
|
+
## [0.24.3](https://github.com/tripss/nestjs-query/compare/v0.24.2...v0.24.3) (2021-03-17)
|
|
128
128
|
|
|
129
129
|
|
|
130
130
|
### Features
|
|
131
131
|
|
|
132
|
-
* **graphql,#609:** Allow disabling maxResultSize ([a3cd664](https://github.com/
|
|
132
|
+
* **graphql,#609:** Allow disabling maxResultSize ([a3cd664](https://github.com/tripss/nestjs-query/commit/a3cd664eb3cd2ebf81a110b7218fb69d4b4a3955)), closes [#609](https://github.com/tripss/nestjs-query/issues/609)
|
|
133
133
|
|
|
134
134
|
|
|
135
135
|
|
|
136
136
|
|
|
137
137
|
|
|
138
|
-
## [0.24.2](https://github.com/
|
|
138
|
+
## [0.24.2](https://github.com/tripss/nestjs-query/compare/v0.24.1...v0.24.2) (2021-03-17)
|
|
139
139
|
|
|
140
140
|
|
|
141
141
|
### Bug Fixes
|
|
142
142
|
|
|
143
|
-
* **graphql,hooks,#957:** Fix HookInterceptor not working with custom resolvers ([c947b3a](https://github.com/
|
|
143
|
+
* **graphql,hooks,#957:** Fix HookInterceptor not working with custom resolvers ([c947b3a](https://github.com/tripss/nestjs-query/commit/c947b3a509d9ba12310680baf8382d8ec7116fd7))
|
|
144
144
|
|
|
145
145
|
|
|
146
146
|
|
|
147
147
|
|
|
148
148
|
|
|
149
|
-
# [0.24.0](https://github.com/
|
|
149
|
+
# [0.24.0](https://github.com/tripss/nestjs-query/compare/v0.23.1...v0.24.0) (2021-03-15)
|
|
150
150
|
|
|
151
151
|
|
|
152
152
|
### Features
|
|
153
153
|
|
|
154
|
-
* **graphql:** Allow disabling `and`/`or` filters ([c20fdbd](https://github.com/
|
|
155
|
-
* **typegoose:** Add typegoose package ([#846](https://github.com/
|
|
154
|
+
* **graphql:** Allow disabling `and`/`or` filters ([c20fdbd](https://github.com/tripss/nestjs-query/commit/c20fdbd9774a541cf4ada8df1c5981e12ede7e8d))
|
|
155
|
+
* **typegoose:** Add typegoose package ([#846](https://github.com/tripss/nestjs-query/issues/846)) ([73cf5cd](https://github.com/tripss/nestjs-query/commit/73cf5cdbf11496ad3a3ce3f6bb69975510de26e2))
|
|
156
156
|
|
|
157
157
|
|
|
158
158
|
|
|
159
159
|
|
|
160
160
|
|
|
161
|
-
# [0.23.0](https://github.com/
|
|
161
|
+
# [0.23.0](https://github.com/tripss/nestjs-query/compare/v0.22.0...v0.23.0) (2021-02-26)
|
|
162
162
|
|
|
163
163
|
|
|
164
164
|
### Features
|
|
165
165
|
|
|
166
|
-
* **graphql:** Added new offset connection with totalCount ([2780e7e](https://github.com/
|
|
167
|
-
* **graphql:** Enabling registering DTOs without auto-generating a resolver ([2f18142](https://github.com/
|
|
168
|
-
* **graphql,hooks:** Provide support for injectable hooks ([d100de8](https://github.com/
|
|
169
|
-
* **graphql,relations:** Revert back to unPagedRelation ([cb3dc62](https://github.com/
|
|
166
|
+
* **graphql:** Added new offset connection with totalCount ([2780e7e](https://github.com/tripss/nestjs-query/commit/2780e7ebfefbcee010797b244fcb46a182a4102e))
|
|
167
|
+
* **graphql:** Enabling registering DTOs without auto-generating a resolver ([2f18142](https://github.com/tripss/nestjs-query/commit/2f18142edf5a0dc0563099b532d54f4a44ac7e56))
|
|
168
|
+
* **graphql,hooks:** Provide support for injectable hooks ([d100de8](https://github.com/tripss/nestjs-query/commit/d100de8306113c044bcbbdc0ceb373c977354255))
|
|
169
|
+
* **graphql,relations:** Revert back to unPagedRelation ([cb3dc62](https://github.com/tripss/nestjs-query/commit/cb3dc624328077267eded288f7cfbd5a6e9b7806))
|
|
170
170
|
|
|
171
171
|
|
|
172
172
|
|
|
173
173
|
|
|
174
174
|
|
|
175
|
-
# [0.22.0](https://github.com/
|
|
175
|
+
# [0.22.0](https://github.com/tripss/nestjs-query/compare/v0.21.2...v0.22.0) (2021-02-08)
|
|
176
176
|
|
|
177
|
-
**Note:** Version bump only for package @nestjs-query
|
|
177
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-graphql
|
|
178
178
|
|
|
179
179
|
|
|
180
180
|
|
|
181
181
|
|
|
182
182
|
|
|
183
|
-
## [0.21.2](https://github.com/
|
|
183
|
+
## [0.21.2](https://github.com/tripss/nestjs-query/compare/v0.21.1...v0.21.2) (2020-10-23)
|
|
184
184
|
|
|
185
185
|
|
|
186
186
|
### Bug Fixes
|
|
187
187
|
|
|
188
|
-
* dataloader cacheKeyFn bigint problem ([92171dc](https://github.com/
|
|
188
|
+
* dataloader cacheKeyFn bigint problem ([92171dc](https://github.com/tripss/nestjs-query/commit/92171dcc76563c563e2586809aec6f12f00aadfa))
|
|
189
189
|
|
|
190
190
|
|
|
191
191
|
|
|
192
192
|
|
|
193
193
|
|
|
194
|
-
## [0.21.1](https://github.com/
|
|
194
|
+
## [0.21.1](https://github.com/tripss/nestjs-query/compare/v0.21.0...v0.21.1) (2020-10-18)
|
|
195
195
|
|
|
196
196
|
|
|
197
197
|
### Features
|
|
198
198
|
|
|
199
|
-
* **graphql, #586:** Allow overriding endpoint name ([1634e71](https://github.com/
|
|
199
|
+
* **graphql, #586:** Allow overriding endpoint name ([1634e71](https://github.com/tripss/nestjs-query/commit/1634e71e7d8eca5b3a2422b7514fea8c2f72220e)), closes [#586](https://github.com/tripss/nestjs-query/issues/586)
|
|
200
200
|
|
|
201
201
|
|
|
202
202
|
|
|
203
203
|
|
|
204
204
|
|
|
205
|
-
# [0.21.0](https://github.com/
|
|
205
|
+
# [0.21.0](https://github.com/tripss/nestjs-query/compare/v0.20.2...v0.21.0) (2020-10-16)
|
|
206
206
|
|
|
207
207
|
|
|
208
208
|
### Bug Fixes
|
|
209
209
|
|
|
210
|
-
* **eslint:** Fix eslint to recognize sub packages ([13fdd2b](https://github.com/
|
|
210
|
+
* **eslint:** Fix eslint to recognize sub packages ([13fdd2b](https://github.com/tripss/nestjs-query/commit/13fdd2b31289dbc80316cbdb5aa32edbe596bad4))
|
|
211
211
|
|
|
212
212
|
|
|
213
213
|
|
|
214
214
|
|
|
215
215
|
|
|
216
|
-
## [0.20.2](https://github.com/
|
|
216
|
+
## [0.20.2](https://github.com/tripss/nestjs-query/compare/v0.20.1...v0.20.2) (2020-10-01)
|
|
217
217
|
|
|
218
|
-
**Note:** Version bump only for package @nestjs-query
|
|
218
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-graphql
|
|
219
219
|
|
|
220
220
|
|
|
221
221
|
|
|
222
222
|
|
|
223
223
|
|
|
224
|
-
## [0.20.1](https://github.com/
|
|
224
|
+
## [0.20.1](https://github.com/tripss/nestjs-query/compare/v0.20.0...v0.20.1) (2020-09-28)
|
|
225
225
|
|
|
226
226
|
|
|
227
227
|
### Bug Fixes
|
|
228
228
|
|
|
229
|
-
* **graphql:** Fix assemblers type for module passthrough ([713c41c](https://github.com/
|
|
229
|
+
* **graphql:** Fix assemblers type for module passthrough ([713c41c](https://github.com/tripss/nestjs-query/commit/713c41cd770068f2242a380593e4a22601d6560b))
|
|
230
230
|
|
|
231
231
|
|
|
232
232
|
|
|
233
233
|
|
|
234
234
|
|
|
235
|
-
# [0.20.0](https://github.com/
|
|
235
|
+
# [0.20.0](https://github.com/tripss/nestjs-query/compare/v0.19.4...v0.20.0) (2020-09-17)
|
|
236
236
|
|
|
237
237
|
|
|
238
238
|
### Features
|
|
239
239
|
|
|
240
|
-
* **core:** Update assemblers to allow transforming create/update dtos ([5085d11](https://github.com/
|
|
240
|
+
* **core:** Update assemblers to allow transforming create/update dtos ([5085d11](https://github.com/tripss/nestjs-query/commit/5085d1193a84396c9016821347c04f0e15eb04da))
|
|
241
241
|
|
|
242
242
|
|
|
243
243
|
|
|
244
244
|
|
|
245
245
|
|
|
246
|
-
## [0.19.4](https://github.com/
|
|
246
|
+
## [0.19.4](https://github.com/tripss/nestjs-query/compare/v0.19.3...v0.19.4) (2020-09-15)
|
|
247
247
|
|
|
248
248
|
|
|
249
249
|
### Features
|
|
250
250
|
|
|
251
|
-
* **graphql:** Add keyset connections ([36bdbdd](https://github.com/
|
|
251
|
+
* **graphql:** Add keyset connections ([36bdbdd](https://github.com/tripss/nestjs-query/commit/36bdbdd9fda8b1db531ceb65c3a7c604c3da23fe))
|
|
252
252
|
|
|
253
253
|
|
|
254
254
|
|
|
255
255
|
|
|
256
256
|
|
|
257
|
-
## [0.19.3](https://github.com/
|
|
257
|
+
## [0.19.3](https://github.com/tripss/nestjs-query/compare/v0.19.2...v0.19.3) (2020-09-09)
|
|
258
258
|
|
|
259
259
|
|
|
260
260
|
### Bug Fixes
|
|
261
261
|
|
|
262
|
-
* **graphql,hooks:** Allow getting hooks from parent classes ([59a0aeb](https://github.com/
|
|
262
|
+
* **graphql,hooks:** Allow getting hooks from parent classes ([59a0aeb](https://github.com/tripss/nestjs-query/commit/59a0aebc3dabd7d23ffde576a94bc588e768efbe))
|
|
263
263
|
|
|
264
264
|
|
|
265
265
|
|
|
266
266
|
|
|
267
267
|
|
|
268
|
-
## [0.19.2](https://github.com/
|
|
268
|
+
## [0.19.2](https://github.com/tripss/nestjs-query/compare/v0.19.1...v0.19.2) (2020-09-03)
|
|
269
269
|
|
|
270
270
|
|
|
271
271
|
### Bug Fixes
|
|
272
272
|
|
|
273
|
-
* **graphql, #505:** Less restrictive readResolverOpts for auto crud ([b4e6862](https://github.com/
|
|
273
|
+
* **graphql, #505:** Less restrictive readResolverOpts for auto crud ([b4e6862](https://github.com/tripss/nestjs-query/commit/b4e68620a973caf4a6bc9ddc9947c0be7464fb11)), closes [#505](https://github.com/tripss/nestjs-query/issues/505)
|
|
274
274
|
|
|
275
275
|
|
|
276
276
|
|
|
277
277
|
|
|
278
278
|
|
|
279
|
-
# [0.19.0](https://github.com/
|
|
279
|
+
# [0.19.0](https://github.com/tripss/nestjs-query/compare/v0.18.1...v0.19.0) (2020-09-01)
|
|
280
280
|
|
|
281
281
|
|
|
282
282
|
### Features
|
|
283
283
|
|
|
284
|
-
* **graphql,auth:** Add authorization to resolvers and relations ([9d76787](https://github.com/
|
|
284
|
+
* **graphql,auth:** Add authorization to resolvers and relations ([9d76787](https://github.com/tripss/nestjs-query/commit/9d76787d031e6a731f28877c0df46cf4472b2faf))
|
|
285
285
|
|
|
286
286
|
|
|
287
287
|
|
|
288
288
|
|
|
289
289
|
|
|
290
|
-
## [0.18.1](https://github.com/
|
|
290
|
+
## [0.18.1](https://github.com/tripss/nestjs-query/compare/v0.18.0...v0.18.1) (2020-08-14)
|
|
291
291
|
|
|
292
|
-
**Note:** Version bump only for package @nestjs-query
|
|
292
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-graphql
|
|
293
293
|
|
|
294
294
|
|
|
295
295
|
|
|
296
296
|
|
|
297
297
|
|
|
298
|
-
# [0.18.0](https://github.com/
|
|
298
|
+
# [0.18.0](https://github.com/tripss/nestjs-query/compare/v0.17.10...v0.18.0) (2020-08-11)
|
|
299
299
|
|
|
300
|
-
**Note:** Version bump only for package @nestjs-query
|
|
300
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-graphql
|
|
301
301
|
|
|
302
302
|
|
|
303
303
|
|
|
304
304
|
|
|
305
305
|
|
|
306
|
-
## [0.17.10](https://github.com/
|
|
306
|
+
## [0.17.10](https://github.com/tripss/nestjs-query/compare/v0.17.9...v0.17.10) (2020-08-01)
|
|
307
307
|
|
|
308
|
-
**Note:** Version bump only for package @nestjs-query
|
|
308
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-graphql
|
|
309
309
|
|
|
310
310
|
|
|
311
311
|
|
|
312
312
|
|
|
313
313
|
|
|
314
|
-
## [0.17.9](https://github.com/
|
|
314
|
+
## [0.17.9](https://github.com/tripss/nestjs-query/compare/v0.17.8...v0.17.9) (2020-07-29)
|
|
315
315
|
|
|
316
316
|
|
|
317
317
|
### Features
|
|
318
318
|
|
|
319
|
-
* **graphql:** Allow specifying fields that are required when querying ([a425ba7](https://github.com/
|
|
319
|
+
* **graphql:** Allow specifying fields that are required when querying ([a425ba7](https://github.com/tripss/nestjs-query/commit/a425ba73b0fc5a184db5b10a709ed78fd234ba7a))
|
|
320
320
|
|
|
321
321
|
|
|
322
322
|
|
|
323
323
|
|
|
324
324
|
|
|
325
|
-
## [0.17.8](https://github.com/
|
|
325
|
+
## [0.17.8](https://github.com/tripss/nestjs-query/compare/v0.17.7...v0.17.8) (2020-07-28)
|
|
326
326
|
|
|
327
327
|
|
|
328
328
|
### Features
|
|
329
329
|
|
|
330
|
-
* **graphql:** Allow specifying allowed comparisons on filterable fields ([ced2792](https://github.com/
|
|
330
|
+
* **graphql:** Allow specifying allowed comparisons on filterable fields ([ced2792](https://github.com/tripss/nestjs-query/commit/ced27920e5c2278c2a04c027a692e25b3306f6cb))
|
|
331
331
|
|
|
332
332
|
|
|
333
333
|
|
|
334
334
|
|
|
335
335
|
|
|
336
|
-
## [0.17.7](https://github.com/
|
|
336
|
+
## [0.17.7](https://github.com/tripss/nestjs-query/compare/v0.17.6...v0.17.7) (2020-07-27)
|
|
337
337
|
|
|
338
|
-
**Note:** Version bump only for package @nestjs-query
|
|
338
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-graphql
|
|
339
339
|
|
|
340
340
|
|
|
341
341
|
|
|
342
342
|
|
|
343
343
|
|
|
344
|
-
## [0.17.6](https://github.com/
|
|
344
|
+
## [0.17.6](https://github.com/tripss/nestjs-query/compare/v0.17.5...v0.17.6) (2020-07-24)
|
|
345
345
|
|
|
346
346
|
|
|
347
347
|
### Bug Fixes
|
|
348
348
|
|
|
349
|
-
* **graphql:** Include inherited references and relations ([26dd6f9](https://github.com/
|
|
349
|
+
* **graphql:** Include inherited references and relations ([26dd6f9](https://github.com/tripss/nestjs-query/commit/26dd6f972379cad736f483912c7a2cf44d0ba966))
|
|
350
350
|
|
|
351
351
|
|
|
352
352
|
|
|
353
353
|
|
|
354
354
|
|
|
355
|
-
## [0.17.5](https://github.com/
|
|
355
|
+
## [0.17.5](https://github.com/tripss/nestjs-query/compare/v0.17.4...v0.17.5) (2020-07-24)
|
|
356
356
|
|
|
357
357
|
|
|
358
358
|
### Bug Fixes
|
|
359
359
|
|
|
360
|
-
* **graphql,aggregations:** Exclude __typename in aggregations ([3897673](https://github.com/
|
|
360
|
+
* **graphql,aggregations:** Exclude __typename in aggregations ([3897673](https://github.com/tripss/nestjs-query/commit/3897673681b30425debc329ad5d5bb442b3838fe))
|
|
361
361
|
|
|
362
362
|
|
|
363
363
|
|
|
364
364
|
|
|
365
365
|
|
|
366
|
-
## [0.17.4](https://github.com/
|
|
366
|
+
## [0.17.4](https://github.com/tripss/nestjs-query/compare/v0.17.3...v0.17.4) (2020-07-23)
|
|
367
367
|
|
|
368
368
|
|
|
369
369
|
### Features
|
|
370
370
|
|
|
371
|
-
* **graphql,hooks:** Add before hooks to graphql mutations ([3448955](https://github.com/
|
|
371
|
+
* **graphql,hooks:** Add before hooks to graphql mutations ([3448955](https://github.com/tripss/nestjs-query/commit/3448955331ae24f3b08c1d8b459b13e0ae96c79f))
|
|
372
372
|
|
|
373
373
|
|
|
374
374
|
|
|
375
375
|
|
|
376
376
|
|
|
377
|
-
## [0.17.3](https://github.com/
|
|
377
|
+
## [0.17.3](https://github.com/tripss/nestjs-query/compare/v0.17.2...v0.17.3) (2020-07-17)
|
|
378
378
|
|
|
379
379
|
|
|
380
380
|
### Bug Fixes
|
|
381
381
|
|
|
382
|
-
* **graphql:** Fix filters to transform to expected type [#317](https://github.com/
|
|
382
|
+
* **graphql:** Fix filters to transform to expected type [#317](https://github.com/tripss/nestjs-query/issues/317) ([0d28b0b](https://github.com/tripss/nestjs-query/commit/0d28b0b968468f821e9b6cf7d53e6d95af22e710))
|
|
383
383
|
|
|
384
384
|
|
|
385
385
|
|
|
386
386
|
|
|
387
387
|
|
|
388
|
-
## [0.17.2](https://github.com/
|
|
388
|
+
## [0.17.2](https://github.com/tripss/nestjs-query/compare/v0.17.1...v0.17.2) (2020-07-17)
|
|
389
389
|
|
|
390
|
-
**Note:** Version bump only for package @nestjs-query
|
|
390
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-graphql
|
|
391
391
|
|
|
392
392
|
|
|
393
393
|
|
|
394
394
|
|
|
395
395
|
|
|
396
|
-
## [0.17.1](https://github.com/
|
|
396
|
+
## [0.17.1](https://github.com/tripss/nestjs-query/compare/v0.17.0...v0.17.1) (2020-07-17)
|
|
397
397
|
|
|
398
398
|
|
|
399
399
|
### Features
|
|
400
400
|
|
|
401
|
-
* **complexity:** Add complexity support for relations ([aa85325](https://github.com/
|
|
401
|
+
* **complexity:** Add complexity support for relations ([aa85325](https://github.com/tripss/nestjs-query/commit/aa853257e693cc656d6ef00d08d547f1988f16c5))
|
|
402
402
|
|
|
403
403
|
|
|
404
404
|
|
|
405
405
|
|
|
406
406
|
|
|
407
|
-
# [0.17.0](https://github.com/
|
|
407
|
+
# [0.17.0](https://github.com/tripss/nestjs-query/compare/v0.16.2...v0.17.0) (2020-07-16)
|
|
408
408
|
|
|
409
409
|
|
|
410
410
|
### Features
|
|
411
411
|
|
|
412
|
-
* **aggregations:** Add aggregations to graphql ([af075d2](https://github.com/
|
|
413
|
-
* **aggregations,relations:** Add relation aggregation graphql enpoints ([56bb7e0](https://github.com/
|
|
412
|
+
* **aggregations:** Add aggregations to graphql ([af075d2](https://github.com/tripss/nestjs-query/commit/af075d2e93b6abbbfbe32afcc917350f803fadaa))
|
|
413
|
+
* **aggregations,relations:** Add relation aggregation graphql enpoints ([56bb7e0](https://github.com/tripss/nestjs-query/commit/56bb7e0be3298ebe76159327ce54229818a6067b))
|
|
414
414
|
|
|
415
415
|
|
|
416
416
|
|
|
417
417
|
|
|
418
418
|
|
|
419
|
-
## [0.16.2](https://github.com/
|
|
419
|
+
## [0.16.2](https://github.com/tripss/nestjs-query/compare/v0.16.1...v0.16.2) (2020-07-09)
|
|
420
420
|
|
|
421
421
|
|
|
422
422
|
### Bug Fixes
|
|
423
423
|
|
|
424
|
-
* **imports:** Remove additional /src references ([9528772](https://github.com/
|
|
424
|
+
* **imports:** Remove additional /src references ([9528772](https://github.com/tripss/nestjs-query/commit/9528772fd4f9b4448112d912e913d07fddf4b619))
|
|
425
425
|
|
|
426
426
|
|
|
427
427
|
|
|
428
428
|
|
|
429
429
|
|
|
430
|
-
## [0.16.1](https://github.com/
|
|
430
|
+
## [0.16.1](https://github.com/tripss/nestjs-query/compare/v0.16.0...v0.16.1) (2020-07-07)
|
|
431
431
|
|
|
432
|
-
**Note:** Version bump only for package @nestjs-query
|
|
432
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-graphql
|
|
433
433
|
|
|
434
434
|
|
|
435
435
|
|
|
436
436
|
|
|
437
437
|
|
|
438
|
-
# [0.16.0](https://github.com/
|
|
438
|
+
# [0.16.0](https://github.com/tripss/nestjs-query/compare/v0.15.1...v0.16.0) (2020-07-05)
|
|
439
439
|
|
|
440
440
|
|
|
441
441
|
### Features
|
|
442
442
|
|
|
443
|
-
* **graphql:** Enable filtering on ORM relations ([60229b8](https://github.com/
|
|
443
|
+
* **graphql:** Enable filtering on ORM relations ([60229b8](https://github.com/tripss/nestjs-query/commit/60229b8fe981a863e8f31f1734c0b9a1aa001cf2))
|
|
444
444
|
|
|
445
445
|
|
|
446
446
|
|
|
447
447
|
|
|
448
448
|
|
|
449
|
-
## [0.15.1](https://github.com/
|
|
449
|
+
## [0.15.1](https://github.com/tripss/nestjs-query/compare/v0.15.0...v0.15.1) (2020-06-27)
|
|
450
450
|
|
|
451
|
-
**Note:** Version bump only for package @nestjs-query
|
|
451
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-graphql
|
|
452
452
|
|
|
453
453
|
|
|
454
454
|
|
|
455
455
|
|
|
456
456
|
|
|
457
|
-
# [0.15.0](https://github.com/
|
|
457
|
+
# [0.15.0](https://github.com/tripss/nestjs-query/compare/v0.14.3...v0.15.0) (2020-06-23)
|
|
458
458
|
|
|
459
459
|
|
|
460
460
|
### Features
|
|
461
461
|
|
|
462
|
-
* **graphql,connection:** Add totalCount to connections ([ed1e84a](https://github.com/
|
|
462
|
+
* **graphql,connection:** Add totalCount to connections ([ed1e84a](https://github.com/tripss/nestjs-query/commit/ed1e84a2feb6f89c3b270fcbc1d0eaf6aec5e575))
|
|
463
463
|
|
|
464
464
|
|
|
465
465
|
|
|
466
466
|
|
|
467
467
|
|
|
468
|
-
## [0.14.3](https://github.com/
|
|
468
|
+
## [0.14.3](https://github.com/tripss/nestjs-query/compare/v0.14.2...v0.14.3) (2020-06-20)
|
|
469
469
|
|
|
470
470
|
|
|
471
471
|
### Bug Fixes
|
|
472
472
|
|
|
473
|
-
* **graphql,subscriptions:** Expose InjectPubSub decorator ([867022e](https://github.com/
|
|
473
|
+
* **graphql,subscriptions:** Expose InjectPubSub decorator ([867022e](https://github.com/tripss/nestjs-query/commit/867022e1967e63659b5df24b13eb04c829569372))
|
|
474
474
|
|
|
475
475
|
|
|
476
476
|
|
|
477
477
|
|
|
478
478
|
|
|
479
|
-
## [0.14.1](https://github.com/
|
|
479
|
+
## [0.14.1](https://github.com/tripss/nestjs-query/compare/v0.14.0...v0.14.1) (2020-06-19)
|
|
480
480
|
|
|
481
481
|
|
|
482
482
|
### Bug Fixes
|
|
483
483
|
|
|
484
|
-
* **graphql:** Allow custom scalars for comparisons ([57cbe38](https://github.com/
|
|
484
|
+
* **graphql:** Allow custom scalars for comparisons ([57cbe38](https://github.com/tripss/nestjs-query/commit/57cbe38cdd941bafab75a660803be6ae5c0afb2c))
|
|
485
485
|
|
|
486
486
|
|
|
487
487
|
|
|
488
488
|
|
|
489
489
|
|
|
490
|
-
# [0.14.0](https://github.com/
|
|
490
|
+
# [0.14.0](https://github.com/tripss/nestjs-query/compare/v0.13.2...v0.14.0) (2020-06-18)
|
|
491
491
|
|
|
492
492
|
|
|
493
493
|
### Features
|
|
494
494
|
|
|
495
|
-
* **graphql,paging:** Add NONE paging strategy ([216d926](https://github.com/
|
|
495
|
+
* **graphql,paging:** Add NONE paging strategy ([216d926](https://github.com/tripss/nestjs-query/commit/216d926a11bb7f4929fe9394c04af826cd3fa52f))
|
|
496
496
|
|
|
497
497
|
|
|
498
498
|
|
|
499
499
|
|
|
500
500
|
|
|
501
|
-
## [0.13.2](https://github.com/
|
|
501
|
+
## [0.13.2](https://github.com/tripss/nestjs-query/compare/v0.13.1...v0.13.2) (2020-06-14)
|
|
502
502
|
|
|
503
503
|
|
|
504
504
|
### Bug Fixes
|
|
505
505
|
|
|
506
|
-
* **graphl,filters:** Allow for enums when filtering ([60dcc30](https://github.com/
|
|
506
|
+
* **graphl,filters:** Allow for enums when filtering ([60dcc30](https://github.com/tripss/nestjs-query/commit/60dcc3074b36a2aeffbf4e30b04d0af3631ae02a))
|
|
507
507
|
|
|
508
508
|
|
|
509
509
|
|
|
510
510
|
|
|
511
511
|
|
|
512
|
-
## [0.13.1](https://github.com/
|
|
512
|
+
## [0.13.1](https://github.com/tripss/nestjs-query/compare/v0.13.0...v0.13.1) (2020-06-12)
|
|
513
513
|
|
|
514
514
|
|
|
515
515
|
### Bug Fixes
|
|
516
516
|
|
|
517
|
-
* **graphql,paging:** Fix for [#281](https://github.com/
|
|
517
|
+
* **graphql,paging:** Fix for [#281](https://github.com/tripss/nestjs-query/issues/281) paging backwards windowing ([c319344](https://github.com/tripss/nestjs-query/commit/c3193440504f55ef8b8b08b486ae01c1b54595bc))
|
|
518
518
|
|
|
519
519
|
|
|
520
520
|
|
|
521
521
|
|
|
522
522
|
|
|
523
|
-
# [0.13.0](https://github.com/
|
|
523
|
+
# [0.13.0](https://github.com/tripss/nestjs-query/compare/v0.12.0...v0.13.0) (2020-06-12)
|
|
524
524
|
|
|
525
525
|
|
|
526
526
|
### Features
|
|
527
527
|
|
|
528
|
-
* **graphql:** Add limit offset paging without connections ([5fc3e90](https://github.com/
|
|
528
|
+
* **graphql:** Add limit offset paging without connections ([5fc3e90](https://github.com/tripss/nestjs-query/commit/5fc3e90c0c738cc653eab57eb0be3c98dae51c3e))
|
|
529
529
|
|
|
530
530
|
|
|
531
531
|
|
|
532
532
|
|
|
533
533
|
|
|
534
|
-
# [0.12.0](https://github.com/
|
|
534
|
+
# [0.12.0](https://github.com/tripss/nestjs-query/compare/v0.11.8...v0.12.0) (2020-06-07)
|
|
535
535
|
|
|
536
536
|
|
|
537
537
|
### Features
|
|
538
538
|
|
|
539
|
-
* **graphql:** Add graphql subscriptions ([5dc987f](https://github.com/
|
|
539
|
+
* **graphql:** Add graphql subscriptions ([5dc987f](https://github.com/tripss/nestjs-query/commit/5dc987f435e0680192313e208359839f9c21d70b))
|
|
540
540
|
|
|
541
541
|
|
|
542
542
|
|
|
543
543
|
|
|
544
544
|
|
|
545
|
-
## [0.11.8](https://github.com/
|
|
545
|
+
## [0.11.8](https://github.com/tripss/nestjs-query/compare/v0.11.7...v0.11.8) (2020-05-30)
|
|
546
546
|
|
|
547
|
-
**Note:** Version bump only for package @nestjs-query
|
|
547
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-graphql
|
|
548
548
|
|
|
549
549
|
|
|
550
550
|
|
|
551
551
|
|
|
552
552
|
|
|
553
|
-
## [0.11.7](https://github.com/
|
|
553
|
+
## [0.11.7](https://github.com/tripss/nestjs-query/compare/v0.11.6...v0.11.7) (2020-05-29)
|
|
554
554
|
|
|
555
|
-
**Note:** Version bump only for package @nestjs-query
|
|
555
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-graphql
|
|
556
556
|
|
|
557
557
|
|
|
558
558
|
|
|
559
559
|
|
|
560
560
|
|
|
561
|
-
## [0.11.6](https://github.com/
|
|
561
|
+
## [0.11.6](https://github.com/tripss/nestjs-query/compare/v0.11.5...v0.11.6) (2020-05-26)
|
|
562
562
|
|
|
563
|
-
**Note:** Version bump only for package @nestjs-query
|
|
563
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-graphql
|
|
564
564
|
|
|
565
565
|
|
|
566
566
|
|
|
567
567
|
|
|
568
568
|
|
|
569
|
-
## [0.11.5](https://github.com/
|
|
569
|
+
## [0.11.5](https://github.com/tripss/nestjs-query/compare/v0.11.4...v0.11.5) (2020-05-21)
|
|
570
570
|
|
|
571
|
-
**Note:** Version bump only for package @nestjs-query
|
|
571
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-graphql
|
|
572
572
|
|
|
573
573
|
|
|
574
574
|
|
|
575
575
|
|
|
576
576
|
|
|
577
|
-
## [0.11.4](https://github.com/
|
|
577
|
+
## [0.11.4](https://github.com/tripss/nestjs-query/compare/v0.11.3...v0.11.4) (2020-05-19)
|
|
578
578
|
|
|
579
|
-
**Note:** Version bump only for package @nestjs-query
|
|
579
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-graphql
|
|
580
580
|
|
|
581
581
|
|
|
582
582
|
|
|
583
583
|
|
|
584
584
|
|
|
585
|
-
## [0.11.3](https://github.com/
|
|
585
|
+
## [0.11.3](https://github.com/tripss/nestjs-query/compare/v0.11.2...v0.11.3) (2020-05-16)
|
|
586
586
|
|
|
587
|
-
**Note:** Version bump only for package @nestjs-query
|
|
587
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-graphql
|
|
588
588
|
|
|
589
589
|
|
|
590
590
|
|
|
591
591
|
|
|
592
592
|
|
|
593
|
-
## [0.11.2](https://github.com/
|
|
593
|
+
## [0.11.2](https://github.com/tripss/nestjs-query/compare/v0.11.1...v0.11.2) (2020-05-14)
|
|
594
594
|
|
|
595
595
|
|
|
596
596
|
### Bug Fixes
|
|
597
597
|
|
|
598
|
-
* Fix lint issues ([c3407c0](https://github.com/
|
|
598
|
+
* Fix lint issues ([c3407c0](https://github.com/tripss/nestjs-query/commit/c3407c0abfebe2ed6563cf754bab646af124a661))
|
|
599
599
|
|
|
600
600
|
|
|
601
601
|
### Features
|
|
602
602
|
|
|
603
|
-
* **graphql,core:** Add support for custom services and assemblers ([85e8658](https://github.com/
|
|
603
|
+
* **graphql,core:** Add support for custom services and assemblers ([85e8658](https://github.com/tripss/nestjs-query/commit/85e8658c6acd495233cabb576c3458afcb8fff12))
|
|
604
604
|
|
|
605
605
|
|
|
606
606
|
|
|
607
607
|
|
|
608
608
|
|
|
609
|
-
## [0.11.1](https://github.com/
|
|
609
|
+
## [0.11.1](https://github.com/tripss/nestjs-query/compare/v0.11.0...v0.11.1) (2020-05-11)
|
|
610
610
|
|
|
611
611
|
|
|
612
612
|
### Features
|
|
613
613
|
|
|
614
|
-
* **graphql:** Add support for auto-generated federations ([238f641](https://github.com/
|
|
614
|
+
* **graphql:** Add support for auto-generated federations ([238f641](https://github.com/tripss/nestjs-query/commit/238f641967ea6668dfb7bd9034fec732da7fe38b))
|
|
615
615
|
|
|
616
616
|
|
|
617
617
|
|
|
618
618
|
|
|
619
619
|
|
|
620
|
-
# [0.11.0](https://github.com/
|
|
620
|
+
# [0.11.0](https://github.com/tripss/nestjs-query/compare/v0.10.2...v0.11.0) (2020-05-09)
|
|
621
621
|
|
|
622
622
|
|
|
623
623
|
### Features
|
|
624
624
|
|
|
625
|
-
* **graphql:** Add graphql module ([282c421](https://github.com/
|
|
626
|
-
* **graphql:** Add relation/connection decorators ([a75cf96](https://github.com/
|
|
625
|
+
* **graphql:** Add graphql module ([282c421](https://github.com/tripss/nestjs-query/commit/282c421d0e6f67fe750fa6005f6cb7d960c8fbd0))
|
|
626
|
+
* **graphql:** Add relation/connection decorators ([a75cf96](https://github.com/tripss/nestjs-query/commit/a75cf96c18dcc3fb1f8899933959753f66b68d7e))
|
|
627
627
|
|
|
628
628
|
|
|
629
629
|
|
|
630
630
|
|
|
631
631
|
|
|
632
|
-
## [0.10.1](https://github.com/
|
|
632
|
+
## [0.10.1](https://github.com/tripss/nestjs-query/compare/v0.10.0...v0.10.1) (2020-05-02)
|
|
633
633
|
|
|
634
634
|
|
|
635
635
|
### Bug Fixes
|
|
636
636
|
|
|
637
|
-
* **graphql:** Fix paging to properly check next/previous page ([13c7bd9](https://github.com/
|
|
637
|
+
* **graphql:** Fix paging to properly check next/previous page ([13c7bd9](https://github.com/tripss/nestjs-query/commit/13c7bd90dae9e5d6ffd33a8813b2cdfcc75ae131))
|
|
638
638
|
|
|
639
639
|
|
|
640
640
|
|
|
641
641
|
|
|
642
642
|
|
|
643
|
-
# [0.10.0](https://github.com/
|
|
643
|
+
# [0.10.0](https://github.com/tripss/nestjs-query/compare/v0.9.0...v0.10.0) (2020-04-29)
|
|
644
644
|
|
|
645
645
|
|
|
646
646
|
### Features
|
|
647
647
|
|
|
648
|
-
* **sequelize:** Initial Sequelize support ([bfcf436](https://github.com/
|
|
648
|
+
* **sequelize:** Initial Sequelize support ([bfcf436](https://github.com/tripss/nestjs-query/commit/bfcf4368b96617113c0334cd78a8881e4952eb99))
|
|
649
649
|
|
|
650
650
|
|
|
651
651
|
|
|
652
652
|
|
|
653
653
|
|
|
654
|
-
# [0.9.0](https://github.com/
|
|
654
|
+
# [0.9.0](https://github.com/tripss/nestjs-query/compare/v0.8.9...v0.9.0) (2020-04-26)
|
|
655
655
|
|
|
656
|
-
**Note:** Version bump only for package @nestjs-query
|
|
656
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-graphql
|
|
657
657
|
|
|
658
658
|
|
|
659
659
|
|
|
660
660
|
|
|
661
661
|
|
|
662
|
-
## [0.8.9](https://github.com/
|
|
662
|
+
## [0.8.9](https://github.com/tripss/nestjs-query/compare/v0.8.8...v0.8.9) (2020-04-24)
|
|
663
663
|
|
|
664
|
-
**Note:** Version bump only for package @nestjs-query
|
|
664
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-graphql
|
|
665
665
|
|
|
666
666
|
|
|
667
667
|
|
|
668
668
|
|
|
669
669
|
|
|
670
|
-
## [0.8.8](https://github.com/
|
|
670
|
+
## [0.8.8](https://github.com/tripss/nestjs-query/compare/v0.8.7...v0.8.8) (2020-04-23)
|
|
671
671
|
|
|
672
|
-
**Note:** Version bump only for package @nestjs-query
|
|
672
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-graphql
|
|
673
673
|
|
|
674
674
|
|
|
675
675
|
|
|
676
676
|
|
|
677
677
|
|
|
678
|
-
## [0.8.7](https://github.com/
|
|
678
|
+
## [0.8.7](https://github.com/tripss/nestjs-query/compare/v0.8.6...v0.8.7) (2020-04-23)
|
|
679
679
|
|
|
680
|
-
**Note:** Version bump only for package @nestjs-query
|
|
680
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-graphql
|