├── .gitignore ├── LICENSE ├── README.md ├── caching.ts ├── index.ts ├── merged.ts ├── package.json ├── schemas ├── advanced_comment_endpoint.graphql └── advanced_post_endpoint.graphql └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/**/* 2 | .env 3 | yarn.lock 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbrandwijk/graphcool-gateway-apollo-engine-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbrandwijk/graphcool-gateway-apollo-engine-demo/HEAD/README.md -------------------------------------------------------------------------------- /caching.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbrandwijk/graphcool-gateway-apollo-engine-demo/HEAD/caching.ts -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbrandwijk/graphcool-gateway-apollo-engine-demo/HEAD/index.ts -------------------------------------------------------------------------------- /merged.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbrandwijk/graphcool-gateway-apollo-engine-demo/HEAD/merged.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbrandwijk/graphcool-gateway-apollo-engine-demo/HEAD/package.json -------------------------------------------------------------------------------- /schemas/advanced_comment_endpoint.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbrandwijk/graphcool-gateway-apollo-engine-demo/HEAD/schemas/advanced_comment_endpoint.graphql -------------------------------------------------------------------------------- /schemas/advanced_post_endpoint.graphql: -------------------------------------------------------------------------------- 1 | type Post @model { 2 | id: ID! @isUnique 3 | title: String! 4 | } 5 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbrandwijk/graphcool-gateway-apollo-engine-demo/HEAD/tsconfig.json --------------------------------------------------------------------------------