├── .gitignore ├── extracted_queries.json ├── extracted_queries_empty.json ├── extracted_queries_typename.json ├── index.js ├── loader └── index.js ├── middleware └── index.js ├── package.json ├── readme.md ├── test-src ├── endpoint1 │ ├── index.js │ ├── indexLocal.js │ └── run.js ├── endpoint2 │ ├── index.js │ ├── indexLocal.js │ └── run.js ├── endpoint3 │ ├── index.js │ ├── indexLocal.js │ └── run.js ├── endpoint4 │ ├── index.js │ ├── indexLocal.js │ └── run.js ├── graphQL-files │ ├── queries │ │ ├── authors.graphql │ │ ├── authors.txt │ │ ├── authorsOfBook.graphql │ │ ├── authorsOfBook.txt │ │ ├── authorsThenTitles.graphql │ │ ├── authorsThenTitles.txt │ │ ├── authorsThenTitlesOfBook.graphql │ │ └── authorsThenTitlesOfBook.txt │ └── typeNameQueries │ │ ├── authors.graphql │ │ ├── authorsOfBook.graphql │ │ ├── authorsThenTitles.graphql │ │ └── authorsThenTitlesOfBook.graphql ├── graphQL │ ├── resolver.js │ └── schema.js ├── testGetQueries.js ├── testGetQueriesEmptyJson.js ├── testGetQueriesEmptyJsonNotFound.js ├── testGetQueriesTypeName.js ├── testRequestQueries.js ├── testRequestQueriesEmptyJson.js ├── testRequestQueriesEmptyJsonNotFound.js ├── testRequestQueriesEmptyJsonNotFoundTypeName.js └── testUtil │ └── queryVerificationUtils.js └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arackaf/generic-persistgraphql/HEAD/.gitignore -------------------------------------------------------------------------------- /extracted_queries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arackaf/generic-persistgraphql/HEAD/extracted_queries.json -------------------------------------------------------------------------------- /extracted_queries_empty.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /extracted_queries_typename.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arackaf/generic-persistgraphql/HEAD/extracted_queries_typename.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arackaf/generic-persistgraphql/HEAD/index.js -------------------------------------------------------------------------------- /loader/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arackaf/generic-persistgraphql/HEAD/loader/index.js -------------------------------------------------------------------------------- /middleware/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arackaf/generic-persistgraphql/HEAD/middleware/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arackaf/generic-persistgraphql/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arackaf/generic-persistgraphql/HEAD/readme.md -------------------------------------------------------------------------------- /test-src/endpoint1/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arackaf/generic-persistgraphql/HEAD/test-src/endpoint1/index.js -------------------------------------------------------------------------------- /test-src/endpoint1/indexLocal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arackaf/generic-persistgraphql/HEAD/test-src/endpoint1/indexLocal.js -------------------------------------------------------------------------------- /test-src/endpoint1/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arackaf/generic-persistgraphql/HEAD/test-src/endpoint1/run.js -------------------------------------------------------------------------------- /test-src/endpoint2/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arackaf/generic-persistgraphql/HEAD/test-src/endpoint2/index.js -------------------------------------------------------------------------------- /test-src/endpoint2/indexLocal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arackaf/generic-persistgraphql/HEAD/test-src/endpoint2/indexLocal.js -------------------------------------------------------------------------------- /test-src/endpoint2/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arackaf/generic-persistgraphql/HEAD/test-src/endpoint2/run.js -------------------------------------------------------------------------------- /test-src/endpoint3/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arackaf/generic-persistgraphql/HEAD/test-src/endpoint3/index.js -------------------------------------------------------------------------------- /test-src/endpoint3/indexLocal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arackaf/generic-persistgraphql/HEAD/test-src/endpoint3/indexLocal.js -------------------------------------------------------------------------------- /test-src/endpoint3/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arackaf/generic-persistgraphql/HEAD/test-src/endpoint3/run.js -------------------------------------------------------------------------------- /test-src/endpoint4/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arackaf/generic-persistgraphql/HEAD/test-src/endpoint4/index.js -------------------------------------------------------------------------------- /test-src/endpoint4/indexLocal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arackaf/generic-persistgraphql/HEAD/test-src/endpoint4/indexLocal.js -------------------------------------------------------------------------------- /test-src/endpoint4/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arackaf/generic-persistgraphql/HEAD/test-src/endpoint4/run.js -------------------------------------------------------------------------------- /test-src/graphQL-files/queries/authors.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arackaf/generic-persistgraphql/HEAD/test-src/graphQL-files/queries/authors.graphql -------------------------------------------------------------------------------- /test-src/graphQL-files/queries/authors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arackaf/generic-persistgraphql/HEAD/test-src/graphQL-files/queries/authors.txt -------------------------------------------------------------------------------- /test-src/graphQL-files/queries/authorsOfBook.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arackaf/generic-persistgraphql/HEAD/test-src/graphQL-files/queries/authorsOfBook.graphql -------------------------------------------------------------------------------- /test-src/graphQL-files/queries/authorsOfBook.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arackaf/generic-persistgraphql/HEAD/test-src/graphQL-files/queries/authorsOfBook.txt -------------------------------------------------------------------------------- /test-src/graphQL-files/queries/authorsThenTitles.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arackaf/generic-persistgraphql/HEAD/test-src/graphQL-files/queries/authorsThenTitles.graphql -------------------------------------------------------------------------------- /test-src/graphQL-files/queries/authorsThenTitles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arackaf/generic-persistgraphql/HEAD/test-src/graphQL-files/queries/authorsThenTitles.txt -------------------------------------------------------------------------------- /test-src/graphQL-files/queries/authorsThenTitlesOfBook.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arackaf/generic-persistgraphql/HEAD/test-src/graphQL-files/queries/authorsThenTitlesOfBook.graphql -------------------------------------------------------------------------------- /test-src/graphQL-files/queries/authorsThenTitlesOfBook.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arackaf/generic-persistgraphql/HEAD/test-src/graphQL-files/queries/authorsThenTitlesOfBook.txt -------------------------------------------------------------------------------- /test-src/graphQL-files/typeNameQueries/authors.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arackaf/generic-persistgraphql/HEAD/test-src/graphQL-files/typeNameQueries/authors.graphql -------------------------------------------------------------------------------- /test-src/graphQL-files/typeNameQueries/authorsOfBook.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arackaf/generic-persistgraphql/HEAD/test-src/graphQL-files/typeNameQueries/authorsOfBook.graphql -------------------------------------------------------------------------------- /test-src/graphQL-files/typeNameQueries/authorsThenTitles.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arackaf/generic-persistgraphql/HEAD/test-src/graphQL-files/typeNameQueries/authorsThenTitles.graphql -------------------------------------------------------------------------------- /test-src/graphQL-files/typeNameQueries/authorsThenTitlesOfBook.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arackaf/generic-persistgraphql/HEAD/test-src/graphQL-files/typeNameQueries/authorsThenTitlesOfBook.graphql -------------------------------------------------------------------------------- /test-src/graphQL/resolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arackaf/generic-persistgraphql/HEAD/test-src/graphQL/resolver.js -------------------------------------------------------------------------------- /test-src/graphQL/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arackaf/generic-persistgraphql/HEAD/test-src/graphQL/schema.js -------------------------------------------------------------------------------- /test-src/testGetQueries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arackaf/generic-persistgraphql/HEAD/test-src/testGetQueries.js -------------------------------------------------------------------------------- /test-src/testGetQueriesEmptyJson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arackaf/generic-persistgraphql/HEAD/test-src/testGetQueriesEmptyJson.js -------------------------------------------------------------------------------- /test-src/testGetQueriesEmptyJsonNotFound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arackaf/generic-persistgraphql/HEAD/test-src/testGetQueriesEmptyJsonNotFound.js -------------------------------------------------------------------------------- /test-src/testGetQueriesTypeName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arackaf/generic-persistgraphql/HEAD/test-src/testGetQueriesTypeName.js -------------------------------------------------------------------------------- /test-src/testRequestQueries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arackaf/generic-persistgraphql/HEAD/test-src/testRequestQueries.js -------------------------------------------------------------------------------- /test-src/testRequestQueriesEmptyJson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arackaf/generic-persistgraphql/HEAD/test-src/testRequestQueriesEmptyJson.js -------------------------------------------------------------------------------- /test-src/testRequestQueriesEmptyJsonNotFound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arackaf/generic-persistgraphql/HEAD/test-src/testRequestQueriesEmptyJsonNotFound.js -------------------------------------------------------------------------------- /test-src/testRequestQueriesEmptyJsonNotFoundTypeName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arackaf/generic-persistgraphql/HEAD/test-src/testRequestQueriesEmptyJsonNotFoundTypeName.js -------------------------------------------------------------------------------- /test-src/testUtil/queryVerificationUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arackaf/generic-persistgraphql/HEAD/test-src/testUtil/queryVerificationUtils.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arackaf/generic-persistgraphql/HEAD/webpack.config.js --------------------------------------------------------------------------------