graphql-compose-pagination
graphql-compose-pagination copied to clipboard
Plugin for TypeComposer (graphql-compose), that adds `pagination` resolver.
Bumps [lodash](https://github.com/lodash/lodash) from 4.17.20 to 4.17.21. Commits f299b52 Bump to v4.17.21 c4847eb Improve performance of toNumber, trim and trimEnd on large input strings 3469357 Prevent command injection through _.template's variable...
Bumps [handlebars](https://github.com/wycats/handlebars.js) from 4.7.3 to 4.7.7. Changelog Sourced from handlebars's changelog. v4.7.7 - February 15th, 2021 fix weird error in integration tests - eb860c0 fix: check prototype property access in...
Bumps [hosted-git-info](https://github.com/npm/hosted-git-info) from 2.8.8 to 2.8.9. Changelog Sourced from hosted-git-info's changelog. 2.8.9 (2021-04-07) Bug Fixes backport regex fix from #76 (29adfe5), closes #84 Commits 8d4b369 chore(release): 2.8.9 29adfe5 fix: backport...
Bumps [normalize-url](https://github.com/sindresorhus/normalize-url) from 5.0.0 to 5.3.1. Release notes Sourced from normalize-url's releases. v5.3.0 Throw a friendly error on view-source: input (#124) ddf2584 https://github.com/sindresorhus/normalize-url/compare/v5.2.1...v5.3.0 v5.2.1 Fix removeSingleSlash option adding slashes (#122)...
Bumps [ssri](https://github.com/npm/ssri) from 6.0.1 to 6.0.2. Changelog Sourced from ssri's changelog. 6.0.2 (2021-04-07) Bug Fixes backport regex change from 8.0.1 (b30dfdb), closes #19 Commits b7c8c7c chore(release): 6.0.2 b30dfdb fix: backport...
Bumps [npm-user-validate](https://github.com/npm/npm-user-validate) from 1.0.0 to 1.0.1. Commits 5c5471c 1.0.1 c8a87da fix: update email validation cd75393 Publish only the minimum of files See full diff in compare view [](https://docs.github.com/en/github/managing-security-vulnerabilities/configuring-github-dependabot-security-updates)...
Bumps [y18n](https://github.com/yargs/y18n) from 3.2.1 to 3.2.2. Commits See full diff in compare view Maintainer changes This version was pushed to npm by oss-bot, a new releaser for y18n since your...
Bumps [ini](https://github.com/isaacs/ini) from 1.3.5 to 1.3.8. Commits a2c5da8 1.3.8 af5c6bb Do not use Object.create(null) 8b648a1 don't test where our devdeps don't even work c74c8af 1.3.7 024b8b5 update deps, add linting...
Hello, ```js import { GQC } from 'graphql-compose'; import composeWithPagination from 'graphql-compose-pagination'; import userTypeComposer from '../modules/user/types'; GQC.rootQuery().addFields({ userById: userTypeComposer.getResolver('findById'), userOne: userTypeComposer.getResolver('findOne'), userMany: userTypeComposer.getResolver('findMany'), userCount: userTypeComposer.getResolver('count'), userPagination: userTypeComposer.getResolver('pagination'), }); GQC.rootMutation().addFields({ userCreate:...