├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── demo ├── custom.d.ts ├── index.html ├── index.tsx ├── queries.ts ├── tsconfig.json └── webpack.demo.js ├── docs ├── gender_stats.png ├── gqlodash-logo.png ├── lodash.gif ├── people_to_films.png ├── planet_with_max_population.png └── relay-architecture.png ├── package.json ├── src ├── index.ts ├── lodash_idl.ts └── transformations.ts ├── tsconfig.json ├── webpack.config.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APIs-guru/graphql-lodash/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | * 2 | !/lib/** 3 | !/package.json 4 | !LICENSE 5 | !README.md 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APIs-guru/graphql-lodash/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APIs-guru/graphql-lodash/HEAD/README.md -------------------------------------------------------------------------------- /demo/custom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APIs-guru/graphql-lodash/HEAD/demo/custom.d.ts -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APIs-guru/graphql-lodash/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APIs-guru/graphql-lodash/HEAD/demo/index.tsx -------------------------------------------------------------------------------- /demo/queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APIs-guru/graphql-lodash/HEAD/demo/queries.ts -------------------------------------------------------------------------------- /demo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APIs-guru/graphql-lodash/HEAD/demo/tsconfig.json -------------------------------------------------------------------------------- /demo/webpack.demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APIs-guru/graphql-lodash/HEAD/demo/webpack.demo.js -------------------------------------------------------------------------------- /docs/gender_stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APIs-guru/graphql-lodash/HEAD/docs/gender_stats.png -------------------------------------------------------------------------------- /docs/gqlodash-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APIs-guru/graphql-lodash/HEAD/docs/gqlodash-logo.png -------------------------------------------------------------------------------- /docs/lodash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APIs-guru/graphql-lodash/HEAD/docs/lodash.gif -------------------------------------------------------------------------------- /docs/people_to_films.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APIs-guru/graphql-lodash/HEAD/docs/people_to_films.png -------------------------------------------------------------------------------- /docs/planet_with_max_population.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APIs-guru/graphql-lodash/HEAD/docs/planet_with_max_population.png -------------------------------------------------------------------------------- /docs/relay-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APIs-guru/graphql-lodash/HEAD/docs/relay-architecture.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APIs-guru/graphql-lodash/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APIs-guru/graphql-lodash/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/lodash_idl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APIs-guru/graphql-lodash/HEAD/src/lodash_idl.ts -------------------------------------------------------------------------------- /src/transformations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APIs-guru/graphql-lodash/HEAD/src/transformations.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APIs-guru/graphql-lodash/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APIs-guru/graphql-lodash/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APIs-guru/graphql-lodash/HEAD/yarn.lock --------------------------------------------------------------------------------