├── .github └── CODEOWNERS ├── .gitignore ├── .nvmrc ├── .prettierrc ├── README.md ├── client ├── .env.development ├── .gitignore ├── .nvmrc ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ └── setupTests.js └── yarn.lock ├── file_types.d.ts ├── package.json ├── public └── welcome.html ├── src ├── caching.ts ├── compute │ ├── brackets.ts │ ├── brackets_pipelines.ts │ ├── choices_over_years_graph.ts │ ├── common.ts │ ├── demographics.ts │ ├── experience.ts │ ├── generic.ts │ ├── happiness.ts │ ├── index.ts │ ├── matrices.ts │ └── tools.ts ├── config.ts ├── data │ ├── bestofjs.yml │ ├── ids.yml │ └── locales.yml ├── debug.ts ├── entities.ts ├── external_apis │ ├── github.ts │ ├── index.ts │ ├── mdn.ts │ └── twitter.ts ├── filters.ts ├── helpers.ts ├── i18n.ts ├── resolvers │ ├── brackets.ts │ ├── categories.ts │ ├── demographics.ts │ ├── entities.ts │ ├── environments.ts │ ├── features.ts │ ├── features_others.ts │ ├── happiness.ts │ ├── index.ts │ ├── matrices.ts │ ├── opinions.ts │ ├── proficiency.ts │ ├── query.ts │ ├── resources.ts │ ├── surveys.ts │ ├── tools.ts │ ├── tools_others.ts │ └── totals.ts ├── rpcs.ts ├── server.ts ├── standalone.ts ├── type_defs │ ├── bracket.graphql │ ├── categories.graphql │ ├── countries.graphql │ ├── demographics.graphql │ ├── entity.graphql │ ├── environments.graphql │ ├── experience.graphql │ ├── features.graphql │ ├── features_others.graphql │ ├── filters.graphql │ ├── github.graphql │ ├── happiness.graphql │ ├── matrices.graphql │ ├── mdn.graphql │ ├── opinions.graphql │ ├── proficiency.graphql │ ├── resources.graphql │ ├── schema.graphql │ ├── surveys.graphql │ ├── tools.graphql │ ├── tools_cardinality_by_user.graphql │ ├── tools_others.graphql │ ├── totals.graphql │ ├── translations.graphql │ ├── twitter.graphql │ └── usage.graphql └── types │ ├── demographics.ts │ ├── entity.ts │ ├── features.ts │ ├── github.ts │ ├── index.ts │ ├── locale.ts │ ├── mdn.ts │ ├── schema.ts │ ├── surveys.ts │ ├── tools.ts │ └── twitter.ts ├── stateofjs-api.code-workspace ├── tsconfig.json ├── webpack.common.js ├── webpack.development.js ├── webpack.production.js └── yarn.lock /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | node_modules 3 | .DS_Store 4 | .env 5 | test.mjs 6 | dist 7 | .logs -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v14.17.5 -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/README.md -------------------------------------------------------------------------------- /client/.env.development: -------------------------------------------------------------------------------- 1 | SKIP_PREFLIGHT_CHECK=true 2 | REACT_APP_ENDPOINT_URL=http://localhost:4000/graphql -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/.nvmrc: -------------------------------------------------------------------------------- 1 | v14.17.5 -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/client/README.md -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/client/package.json -------------------------------------------------------------------------------- /client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/client/public/favicon.ico -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/client/public/index.html -------------------------------------------------------------------------------- /client/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/client/public/logo192.png -------------------------------------------------------------------------------- /client/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/client/public/logo512.png -------------------------------------------------------------------------------- /client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/client/public/manifest.json -------------------------------------------------------------------------------- /client/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/client/public/robots.txt -------------------------------------------------------------------------------- /client/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/client/src/App.css -------------------------------------------------------------------------------- /client/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/client/src/App.js -------------------------------------------------------------------------------- /client/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/client/src/App.test.js -------------------------------------------------------------------------------- /client/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/client/src/index.css -------------------------------------------------------------------------------- /client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/client/src/index.js -------------------------------------------------------------------------------- /client/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/client/src/logo.svg -------------------------------------------------------------------------------- /client/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/client/src/setupTests.js -------------------------------------------------------------------------------- /client/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/client/yarn.lock -------------------------------------------------------------------------------- /file_types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/file_types.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/package.json -------------------------------------------------------------------------------- /public/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/public/welcome.html -------------------------------------------------------------------------------- /src/caching.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/caching.ts -------------------------------------------------------------------------------- /src/compute/brackets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/compute/brackets.ts -------------------------------------------------------------------------------- /src/compute/brackets_pipelines.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/compute/brackets_pipelines.ts -------------------------------------------------------------------------------- /src/compute/choices_over_years_graph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/compute/choices_over_years_graph.ts -------------------------------------------------------------------------------- /src/compute/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/compute/common.ts -------------------------------------------------------------------------------- /src/compute/demographics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/compute/demographics.ts -------------------------------------------------------------------------------- /src/compute/experience.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/compute/experience.ts -------------------------------------------------------------------------------- /src/compute/generic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/compute/generic.ts -------------------------------------------------------------------------------- /src/compute/happiness.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/compute/happiness.ts -------------------------------------------------------------------------------- /src/compute/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/compute/index.ts -------------------------------------------------------------------------------- /src/compute/matrices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/compute/matrices.ts -------------------------------------------------------------------------------- /src/compute/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/compute/tools.ts -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/data/bestofjs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/data/bestofjs.yml -------------------------------------------------------------------------------- /src/data/ids.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/data/ids.yml -------------------------------------------------------------------------------- /src/data/locales.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/data/locales.yml -------------------------------------------------------------------------------- /src/debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/debug.ts -------------------------------------------------------------------------------- /src/entities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/entities.ts -------------------------------------------------------------------------------- /src/external_apis/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/external_apis/github.ts -------------------------------------------------------------------------------- /src/external_apis/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/external_apis/index.ts -------------------------------------------------------------------------------- /src/external_apis/mdn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/external_apis/mdn.ts -------------------------------------------------------------------------------- /src/external_apis/twitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/external_apis/twitter.ts -------------------------------------------------------------------------------- /src/filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/filters.ts -------------------------------------------------------------------------------- /src/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/helpers.ts -------------------------------------------------------------------------------- /src/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/i18n.ts -------------------------------------------------------------------------------- /src/resolvers/brackets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/resolvers/brackets.ts -------------------------------------------------------------------------------- /src/resolvers/categories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/resolvers/categories.ts -------------------------------------------------------------------------------- /src/resolvers/demographics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/resolvers/demographics.ts -------------------------------------------------------------------------------- /src/resolvers/entities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/resolvers/entities.ts -------------------------------------------------------------------------------- /src/resolvers/environments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/resolvers/environments.ts -------------------------------------------------------------------------------- /src/resolvers/features.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/resolvers/features.ts -------------------------------------------------------------------------------- /src/resolvers/features_others.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/resolvers/features_others.ts -------------------------------------------------------------------------------- /src/resolvers/happiness.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/resolvers/happiness.ts -------------------------------------------------------------------------------- /src/resolvers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/resolvers/index.ts -------------------------------------------------------------------------------- /src/resolvers/matrices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/resolvers/matrices.ts -------------------------------------------------------------------------------- /src/resolvers/opinions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/resolvers/opinions.ts -------------------------------------------------------------------------------- /src/resolvers/proficiency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/resolvers/proficiency.ts -------------------------------------------------------------------------------- /src/resolvers/query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/resolvers/query.ts -------------------------------------------------------------------------------- /src/resolvers/resources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/resolvers/resources.ts -------------------------------------------------------------------------------- /src/resolvers/surveys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/resolvers/surveys.ts -------------------------------------------------------------------------------- /src/resolvers/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/resolvers/tools.ts -------------------------------------------------------------------------------- /src/resolvers/tools_others.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/resolvers/tools_others.ts -------------------------------------------------------------------------------- /src/resolvers/totals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/resolvers/totals.ts -------------------------------------------------------------------------------- /src/rpcs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/rpcs.ts -------------------------------------------------------------------------------- /src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/server.ts -------------------------------------------------------------------------------- /src/standalone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/standalone.ts -------------------------------------------------------------------------------- /src/type_defs/bracket.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/type_defs/bracket.graphql -------------------------------------------------------------------------------- /src/type_defs/categories.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/type_defs/categories.graphql -------------------------------------------------------------------------------- /src/type_defs/countries.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/type_defs/countries.graphql -------------------------------------------------------------------------------- /src/type_defs/demographics.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/type_defs/demographics.graphql -------------------------------------------------------------------------------- /src/type_defs/entity.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/type_defs/entity.graphql -------------------------------------------------------------------------------- /src/type_defs/environments.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/type_defs/environments.graphql -------------------------------------------------------------------------------- /src/type_defs/experience.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/type_defs/experience.graphql -------------------------------------------------------------------------------- /src/type_defs/features.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/type_defs/features.graphql -------------------------------------------------------------------------------- /src/type_defs/features_others.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/type_defs/features_others.graphql -------------------------------------------------------------------------------- /src/type_defs/filters.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/type_defs/filters.graphql -------------------------------------------------------------------------------- /src/type_defs/github.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/type_defs/github.graphql -------------------------------------------------------------------------------- /src/type_defs/happiness.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/type_defs/happiness.graphql -------------------------------------------------------------------------------- /src/type_defs/matrices.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/type_defs/matrices.graphql -------------------------------------------------------------------------------- /src/type_defs/mdn.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/type_defs/mdn.graphql -------------------------------------------------------------------------------- /src/type_defs/opinions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/type_defs/opinions.graphql -------------------------------------------------------------------------------- /src/type_defs/proficiency.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/type_defs/proficiency.graphql -------------------------------------------------------------------------------- /src/type_defs/resources.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/type_defs/resources.graphql -------------------------------------------------------------------------------- /src/type_defs/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/type_defs/schema.graphql -------------------------------------------------------------------------------- /src/type_defs/surveys.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/type_defs/surveys.graphql -------------------------------------------------------------------------------- /src/type_defs/tools.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/type_defs/tools.graphql -------------------------------------------------------------------------------- /src/type_defs/tools_cardinality_by_user.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/type_defs/tools_cardinality_by_user.graphql -------------------------------------------------------------------------------- /src/type_defs/tools_others.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/type_defs/tools_others.graphql -------------------------------------------------------------------------------- /src/type_defs/totals.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/type_defs/totals.graphql -------------------------------------------------------------------------------- /src/type_defs/translations.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/type_defs/translations.graphql -------------------------------------------------------------------------------- /src/type_defs/twitter.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/type_defs/twitter.graphql -------------------------------------------------------------------------------- /src/type_defs/usage.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/type_defs/usage.graphql -------------------------------------------------------------------------------- /src/types/demographics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/types/demographics.ts -------------------------------------------------------------------------------- /src/types/entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/types/entity.ts -------------------------------------------------------------------------------- /src/types/features.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/types/features.ts -------------------------------------------------------------------------------- /src/types/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/types/github.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/types/locale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/types/locale.ts -------------------------------------------------------------------------------- /src/types/mdn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/types/mdn.ts -------------------------------------------------------------------------------- /src/types/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/types/schema.ts -------------------------------------------------------------------------------- /src/types/surveys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/types/surveys.ts -------------------------------------------------------------------------------- /src/types/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/types/tools.ts -------------------------------------------------------------------------------- /src/types/twitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/src/types/twitter.ts -------------------------------------------------------------------------------- /stateofjs-api.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/stateofjs-api.code-workspace -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/webpack.common.js -------------------------------------------------------------------------------- /webpack.development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/webpack.development.js -------------------------------------------------------------------------------- /webpack.production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/webpack.production.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/state-of-js-graphql-results-api/HEAD/yarn.lock --------------------------------------------------------------------------------