├── .gitignore ├── README.md ├── ansible ├── ansible.cfg ├── benchmark.yaml └── hosts ├── config.ts ├── config.yaml ├── config.yaml.j2 ├── index.ts ├── knexfile.js ├── migrations └── events.js ├── package.json ├── schema.ts ├── subscriptions.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.sqlite 3 | dist/ 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/graphql-subscriptions-benchmark/HEAD/README.md -------------------------------------------------------------------------------- /ansible/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/graphql-subscriptions-benchmark/HEAD/ansible/ansible.cfg -------------------------------------------------------------------------------- /ansible/benchmark.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/graphql-subscriptions-benchmark/HEAD/ansible/benchmark.yaml -------------------------------------------------------------------------------- /ansible/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/graphql-subscriptions-benchmark/HEAD/ansible/hosts -------------------------------------------------------------------------------- /config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/graphql-subscriptions-benchmark/HEAD/config.ts -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/graphql-subscriptions-benchmark/HEAD/config.yaml -------------------------------------------------------------------------------- /config.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/graphql-subscriptions-benchmark/HEAD/config.yaml.j2 -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/graphql-subscriptions-benchmark/HEAD/index.ts -------------------------------------------------------------------------------- /knexfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/graphql-subscriptions-benchmark/HEAD/knexfile.js -------------------------------------------------------------------------------- /migrations/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/graphql-subscriptions-benchmark/HEAD/migrations/events.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/graphql-subscriptions-benchmark/HEAD/package.json -------------------------------------------------------------------------------- /schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/graphql-subscriptions-benchmark/HEAD/schema.ts -------------------------------------------------------------------------------- /subscriptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/graphql-subscriptions-benchmark/HEAD/subscriptions.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/graphql-subscriptions-benchmark/HEAD/tsconfig.json --------------------------------------------------------------------------------