├── .github ├── ISSUE_TEMPLATE │ ├── config.yml │ ├── landscape_feedback.yml │ ├── new-landscape-entry.yml │ └── update-landscape-entry.yml ├── PULL_REQUEST_TEMPLATE.md ├── landscape_feedback.yml └── workflows │ ├── build.yml │ ├── preview.yml │ └── validate.yml ├── .gitignore ├── LICENSE ├── README.md ├── code-of-conduct.md ├── config.yml ├── hosted_logos ├── 1stdibs.svg ├── 20minutes.svg ├── 8base.svg ├── 99designs.svg ├── adayroi-adopter.svg ├── aftership.svg ├── airbnb.svg ├── alembic.svg ├── allocine-adopter.svg ├── alphasights.svg ├── amazon_web_services_inc.svg ├── amplitude-adopter.svg ├── ants.svg ├── apollo-angular.svg ├── apollo-cli.svg ├── apollo-graphql.svg ├── apollo_graphql.svg ├── appier.svg ├── appsync.svg ├── arangodb-adopter.svg ├── arangodb.svg ├── artsy.svg ├── assertible.svg ├── atlassian.svg ├── atlassian_inc.svg ├── atlassian_us_inc.svg ├── attendify-adopter.svg ├── audi.svg ├── auto-guru-adopter.svg ├── azure-api-management.svg ├── bazinga-adopter.svg ├── betterpt.svg ├── blockchain_technology_partners_inc.svg ├── braintree.svg ├── buildkite.svg ├── bynder.svg ├── cheddar.svg ├── cherre.svg ├── circle-hd-adopter.svg ├── cloverleaf.svg ├── clubmed.svg ├── colectica.svg ├── commerce-tools-adopter.svg ├── compara.svg ├── conduithq.svg ├── configure-one.svg ├── copilot_travel_inc.svg ├── coursera.svg ├── craftcms.svg ├── credit-karma-adopter.svg ├── cube.svg ├── curio.svg ├── dailymotion.svg ├── devopsinternational.svg ├── dgraph-labs.svg ├── directlyrics.svg ├── drift.svg ├── duedil.svg ├── easy-carros-adopter.svg ├── edgedb.svg ├── ediket.svg ├── elementl.svg ├── envelop.svg ├── escape.svg ├── eventone.svg ├── expert360.svg ├── faircg.svg ├── fairfaxmedia.svg ├── fauna.svg ├── file-jet-adopter.svg ├── forward-networks.svg ├── gatsby_inc.svg ├── generationtux.svg ├── germantechjobs.svg ├── getninjas.svg ├── github.svg ├── goalify.svg ├── goldman_sachs__co_llc.svg ├── goldman_sachs_co.svg ├── grafbase-name.svg ├── grafbase.svg ├── graph-cms-adopter.svg ├── graphcms.svg ├── graphcool.svg ├── graphiql.svg ├── graphql-cli.svg ├── graphql-code-generator.svg ├── graphql-config.svg ├── graphql-helix.svg ├── graphql-inspector.svg ├── graphql-mesh.svg ├── graphql-modules.svg ├── graphql-scalars.svg ├── graphql-shield.svg ├── graphql-tools.svg ├── graphql.svg ├── graphql_specification.svg ├── hackages-adopter.svg ├── hasura.svg ├── hasura_inc.svg ├── hijup.svg ├── hive.svg ├── housing-anywhere-adopter.svg ├── hudl.svg ├── hygraph.svg ├── hygraph_gmbh.svg ├── indeed_inc.svg ├── inigo.svg ├── instacart.svg ├── instana.svg ├── international_business_machines_corporation.svg ├── intuit.svg ├── intuit_inc.svg ├── klm.svg ├── krakend.svg ├── kyma.svg ├── loggi.svg ├── lyft.svg ├── magento.svg ├── marriott.svg ├── meta.svg ├── meta_platforms_inc.svg ├── microsoft_corporation.svg ├── nashtech.svg ├── nbc.svg ├── neo4j.svg ├── neo4j_inc.svg ├── newrelic.svg ├── nhost.svg ├── northflank.svg ├── one-medical.svg ├── paypal.svg ├── paypal_holdings_inc.svg ├── pinterest.svg ├── platformatic.svg ├── pluralsight.svg ├── postman.svg ├── prisma_data_inc.svg ├── rakuten.svg ├── researchgate.svg ├── saleor_commerce.svg ├── salsify.svg ├── satispay.svg ├── screencloud.svg ├── serverless.svg ├── shopify.svg ├── shopify_inc.svg ├── sofa.svg ├── soloio.svg ├── soloio_inc.svg ├── stackshare-adopter.svg ├── starbucks.svg ├── stellate.svg ├── stepzen.svg ├── stepzen_inc.svg ├── supply.svg ├── swapcard.svg ├── swiftgraphql.svg ├── tailcall.svg ├── tartiflette.svg ├── the-new-york-times-adopter.svg ├── the_guild.svg ├── travaux_com.svg ├── tridge.svg ├── twitter.svg ├── tyk.svg ├── tyk_technologies_ltd.svg ├── type-graphql.svg ├── vazco.svg ├── wayfair.svg ├── weaviate.svg ├── werkspot.svg ├── world-kinect.svg ├── wundergraph.svg ├── yelp.svg └── yugabyte.svg ├── images ├── favicon.png ├── left-logo.svg ├── qr.svg ├── right-logo.svg └── support-graphql.svg └── landscape.yml /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/landscape_feedback.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/.github/ISSUE_TEMPLATE/landscape_feedback.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-landscape-entry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/.github/ISSUE_TEMPLATE/new-landscape-entry.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/update-landscape-entry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/.github/ISSUE_TEMPLATE/update-landscape-entry.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/landscape_feedback.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/.github/landscape_feedback.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/.github/workflows/preview.yml -------------------------------------------------------------------------------- /.github/workflows/validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/.github/workflows/validate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/README.md -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/code-of-conduct.md -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/config.yml -------------------------------------------------------------------------------- /hosted_logos/1stdibs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/1stdibs.svg -------------------------------------------------------------------------------- /hosted_logos/20minutes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/20minutes.svg -------------------------------------------------------------------------------- /hosted_logos/8base.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/8base.svg -------------------------------------------------------------------------------- /hosted_logos/99designs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/99designs.svg -------------------------------------------------------------------------------- /hosted_logos/adayroi-adopter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/adayroi-adopter.svg -------------------------------------------------------------------------------- /hosted_logos/aftership.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/aftership.svg -------------------------------------------------------------------------------- /hosted_logos/airbnb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/airbnb.svg -------------------------------------------------------------------------------- /hosted_logos/alembic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/alembic.svg -------------------------------------------------------------------------------- /hosted_logos/allocine-adopter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/allocine-adopter.svg -------------------------------------------------------------------------------- /hosted_logos/alphasights.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/alphasights.svg -------------------------------------------------------------------------------- /hosted_logos/amazon_web_services_inc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/amazon_web_services_inc.svg -------------------------------------------------------------------------------- /hosted_logos/amplitude-adopter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/amplitude-adopter.svg -------------------------------------------------------------------------------- /hosted_logos/ants.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/ants.svg -------------------------------------------------------------------------------- /hosted_logos/apollo-angular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/apollo-angular.svg -------------------------------------------------------------------------------- /hosted_logos/apollo-cli.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/apollo-cli.svg -------------------------------------------------------------------------------- /hosted_logos/apollo-graphql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/apollo-graphql.svg -------------------------------------------------------------------------------- /hosted_logos/apollo_graphql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/apollo_graphql.svg -------------------------------------------------------------------------------- /hosted_logos/appier.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/appier.svg -------------------------------------------------------------------------------- /hosted_logos/appsync.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/appsync.svg -------------------------------------------------------------------------------- /hosted_logos/arangodb-adopter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/arangodb-adopter.svg -------------------------------------------------------------------------------- /hosted_logos/arangodb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/arangodb.svg -------------------------------------------------------------------------------- /hosted_logos/artsy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/artsy.svg -------------------------------------------------------------------------------- /hosted_logos/assertible.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/assertible.svg -------------------------------------------------------------------------------- /hosted_logos/atlassian.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/atlassian.svg -------------------------------------------------------------------------------- /hosted_logos/atlassian_inc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/atlassian_inc.svg -------------------------------------------------------------------------------- /hosted_logos/atlassian_us_inc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/atlassian_us_inc.svg -------------------------------------------------------------------------------- /hosted_logos/attendify-adopter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/attendify-adopter.svg -------------------------------------------------------------------------------- /hosted_logos/audi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/audi.svg -------------------------------------------------------------------------------- /hosted_logos/auto-guru-adopter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/auto-guru-adopter.svg -------------------------------------------------------------------------------- /hosted_logos/azure-api-management.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/azure-api-management.svg -------------------------------------------------------------------------------- /hosted_logos/bazinga-adopter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/bazinga-adopter.svg -------------------------------------------------------------------------------- /hosted_logos/betterpt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/betterpt.svg -------------------------------------------------------------------------------- /hosted_logos/blockchain_technology_partners_inc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/blockchain_technology_partners_inc.svg -------------------------------------------------------------------------------- /hosted_logos/braintree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/braintree.svg -------------------------------------------------------------------------------- /hosted_logos/buildkite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/buildkite.svg -------------------------------------------------------------------------------- /hosted_logos/bynder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/bynder.svg -------------------------------------------------------------------------------- /hosted_logos/cheddar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/cheddar.svg -------------------------------------------------------------------------------- /hosted_logos/cherre.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/cherre.svg -------------------------------------------------------------------------------- /hosted_logos/circle-hd-adopter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/circle-hd-adopter.svg -------------------------------------------------------------------------------- /hosted_logos/cloverleaf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/cloverleaf.svg -------------------------------------------------------------------------------- /hosted_logos/clubmed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/clubmed.svg -------------------------------------------------------------------------------- /hosted_logos/colectica.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/colectica.svg -------------------------------------------------------------------------------- /hosted_logos/commerce-tools-adopter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/commerce-tools-adopter.svg -------------------------------------------------------------------------------- /hosted_logos/compara.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/compara.svg -------------------------------------------------------------------------------- /hosted_logos/conduithq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/conduithq.svg -------------------------------------------------------------------------------- /hosted_logos/configure-one.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/configure-one.svg -------------------------------------------------------------------------------- /hosted_logos/copilot_travel_inc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/copilot_travel_inc.svg -------------------------------------------------------------------------------- /hosted_logos/coursera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/coursera.svg -------------------------------------------------------------------------------- /hosted_logos/craftcms.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/craftcms.svg -------------------------------------------------------------------------------- /hosted_logos/credit-karma-adopter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/credit-karma-adopter.svg -------------------------------------------------------------------------------- /hosted_logos/cube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/cube.svg -------------------------------------------------------------------------------- /hosted_logos/curio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/curio.svg -------------------------------------------------------------------------------- /hosted_logos/dailymotion.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/dailymotion.svg -------------------------------------------------------------------------------- /hosted_logos/devopsinternational.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/devopsinternational.svg -------------------------------------------------------------------------------- /hosted_logos/dgraph-labs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/dgraph-labs.svg -------------------------------------------------------------------------------- /hosted_logos/directlyrics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/directlyrics.svg -------------------------------------------------------------------------------- /hosted_logos/drift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/drift.svg -------------------------------------------------------------------------------- /hosted_logos/duedil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/duedil.svg -------------------------------------------------------------------------------- /hosted_logos/easy-carros-adopter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/easy-carros-adopter.svg -------------------------------------------------------------------------------- /hosted_logos/edgedb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/edgedb.svg -------------------------------------------------------------------------------- /hosted_logos/ediket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/ediket.svg -------------------------------------------------------------------------------- /hosted_logos/elementl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/elementl.svg -------------------------------------------------------------------------------- /hosted_logos/envelop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/envelop.svg -------------------------------------------------------------------------------- /hosted_logos/escape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/escape.svg -------------------------------------------------------------------------------- /hosted_logos/eventone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/eventone.svg -------------------------------------------------------------------------------- /hosted_logos/expert360.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/expert360.svg -------------------------------------------------------------------------------- /hosted_logos/faircg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/faircg.svg -------------------------------------------------------------------------------- /hosted_logos/fairfaxmedia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/fairfaxmedia.svg -------------------------------------------------------------------------------- /hosted_logos/fauna.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/fauna.svg -------------------------------------------------------------------------------- /hosted_logos/file-jet-adopter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/file-jet-adopter.svg -------------------------------------------------------------------------------- /hosted_logos/forward-networks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/forward-networks.svg -------------------------------------------------------------------------------- /hosted_logos/gatsby_inc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/gatsby_inc.svg -------------------------------------------------------------------------------- /hosted_logos/generationtux.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/generationtux.svg -------------------------------------------------------------------------------- /hosted_logos/germantechjobs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/germantechjobs.svg -------------------------------------------------------------------------------- /hosted_logos/getninjas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/getninjas.svg -------------------------------------------------------------------------------- /hosted_logos/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/github.svg -------------------------------------------------------------------------------- /hosted_logos/goalify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/goalify.svg -------------------------------------------------------------------------------- /hosted_logos/goldman_sachs__co_llc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/goldman_sachs__co_llc.svg -------------------------------------------------------------------------------- /hosted_logos/goldman_sachs_co.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/goldman_sachs_co.svg -------------------------------------------------------------------------------- /hosted_logos/grafbase-name.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/grafbase-name.svg -------------------------------------------------------------------------------- /hosted_logos/grafbase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/grafbase.svg -------------------------------------------------------------------------------- /hosted_logos/graph-cms-adopter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/graph-cms-adopter.svg -------------------------------------------------------------------------------- /hosted_logos/graphcms.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/graphcms.svg -------------------------------------------------------------------------------- /hosted_logos/graphcool.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/graphcool.svg -------------------------------------------------------------------------------- /hosted_logos/graphiql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/graphiql.svg -------------------------------------------------------------------------------- /hosted_logos/graphql-cli.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/graphql-cli.svg -------------------------------------------------------------------------------- /hosted_logos/graphql-code-generator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/graphql-code-generator.svg -------------------------------------------------------------------------------- /hosted_logos/graphql-config.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/graphql-config.svg -------------------------------------------------------------------------------- /hosted_logos/graphql-helix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/graphql-helix.svg -------------------------------------------------------------------------------- /hosted_logos/graphql-inspector.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/graphql-inspector.svg -------------------------------------------------------------------------------- /hosted_logos/graphql-mesh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/graphql-mesh.svg -------------------------------------------------------------------------------- /hosted_logos/graphql-modules.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/graphql-modules.svg -------------------------------------------------------------------------------- /hosted_logos/graphql-scalars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/graphql-scalars.svg -------------------------------------------------------------------------------- /hosted_logos/graphql-shield.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/graphql-shield.svg -------------------------------------------------------------------------------- /hosted_logos/graphql-tools.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/graphql-tools.svg -------------------------------------------------------------------------------- /hosted_logos/graphql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/graphql.svg -------------------------------------------------------------------------------- /hosted_logos/graphql_specification.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/graphql_specification.svg -------------------------------------------------------------------------------- /hosted_logos/hackages-adopter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/hackages-adopter.svg -------------------------------------------------------------------------------- /hosted_logos/hasura.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/hasura.svg -------------------------------------------------------------------------------- /hosted_logos/hasura_inc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/hasura_inc.svg -------------------------------------------------------------------------------- /hosted_logos/hijup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/hijup.svg -------------------------------------------------------------------------------- /hosted_logos/hive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/hive.svg -------------------------------------------------------------------------------- /hosted_logos/housing-anywhere-adopter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/housing-anywhere-adopter.svg -------------------------------------------------------------------------------- /hosted_logos/hudl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/hudl.svg -------------------------------------------------------------------------------- /hosted_logos/hygraph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/hygraph.svg -------------------------------------------------------------------------------- /hosted_logos/hygraph_gmbh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/hygraph_gmbh.svg -------------------------------------------------------------------------------- /hosted_logos/indeed_inc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/indeed_inc.svg -------------------------------------------------------------------------------- /hosted_logos/inigo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/inigo.svg -------------------------------------------------------------------------------- /hosted_logos/instacart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/instacart.svg -------------------------------------------------------------------------------- /hosted_logos/instana.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/instana.svg -------------------------------------------------------------------------------- /hosted_logos/international_business_machines_corporation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/international_business_machines_corporation.svg -------------------------------------------------------------------------------- /hosted_logos/intuit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/intuit.svg -------------------------------------------------------------------------------- /hosted_logos/intuit_inc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/intuit_inc.svg -------------------------------------------------------------------------------- /hosted_logos/klm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/klm.svg -------------------------------------------------------------------------------- /hosted_logos/krakend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/krakend.svg -------------------------------------------------------------------------------- /hosted_logos/kyma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/kyma.svg -------------------------------------------------------------------------------- /hosted_logos/loggi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/loggi.svg -------------------------------------------------------------------------------- /hosted_logos/lyft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/lyft.svg -------------------------------------------------------------------------------- /hosted_logos/magento.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/magento.svg -------------------------------------------------------------------------------- /hosted_logos/marriott.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/marriott.svg -------------------------------------------------------------------------------- /hosted_logos/meta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/meta.svg -------------------------------------------------------------------------------- /hosted_logos/meta_platforms_inc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/meta_platforms_inc.svg -------------------------------------------------------------------------------- /hosted_logos/microsoft_corporation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/microsoft_corporation.svg -------------------------------------------------------------------------------- /hosted_logos/nashtech.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/nashtech.svg -------------------------------------------------------------------------------- /hosted_logos/nbc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/nbc.svg -------------------------------------------------------------------------------- /hosted_logos/neo4j.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/neo4j.svg -------------------------------------------------------------------------------- /hosted_logos/neo4j_inc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/neo4j_inc.svg -------------------------------------------------------------------------------- /hosted_logos/newrelic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/newrelic.svg -------------------------------------------------------------------------------- /hosted_logos/nhost.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/nhost.svg -------------------------------------------------------------------------------- /hosted_logos/northflank.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/northflank.svg -------------------------------------------------------------------------------- /hosted_logos/one-medical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/one-medical.svg -------------------------------------------------------------------------------- /hosted_logos/paypal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/paypal.svg -------------------------------------------------------------------------------- /hosted_logos/paypal_holdings_inc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/paypal_holdings_inc.svg -------------------------------------------------------------------------------- /hosted_logos/pinterest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/pinterest.svg -------------------------------------------------------------------------------- /hosted_logos/platformatic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/platformatic.svg -------------------------------------------------------------------------------- /hosted_logos/pluralsight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/pluralsight.svg -------------------------------------------------------------------------------- /hosted_logos/postman.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/postman.svg -------------------------------------------------------------------------------- /hosted_logos/prisma_data_inc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/prisma_data_inc.svg -------------------------------------------------------------------------------- /hosted_logos/rakuten.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/rakuten.svg -------------------------------------------------------------------------------- /hosted_logos/researchgate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/researchgate.svg -------------------------------------------------------------------------------- /hosted_logos/saleor_commerce.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/saleor_commerce.svg -------------------------------------------------------------------------------- /hosted_logos/salsify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/salsify.svg -------------------------------------------------------------------------------- /hosted_logos/satispay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/satispay.svg -------------------------------------------------------------------------------- /hosted_logos/screencloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/screencloud.svg -------------------------------------------------------------------------------- /hosted_logos/serverless.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/serverless.svg -------------------------------------------------------------------------------- /hosted_logos/shopify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/shopify.svg -------------------------------------------------------------------------------- /hosted_logos/shopify_inc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/shopify_inc.svg -------------------------------------------------------------------------------- /hosted_logos/sofa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/sofa.svg -------------------------------------------------------------------------------- /hosted_logos/soloio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/soloio.svg -------------------------------------------------------------------------------- /hosted_logos/soloio_inc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/soloio_inc.svg -------------------------------------------------------------------------------- /hosted_logos/stackshare-adopter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/stackshare-adopter.svg -------------------------------------------------------------------------------- /hosted_logos/starbucks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/starbucks.svg -------------------------------------------------------------------------------- /hosted_logos/stellate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/stellate.svg -------------------------------------------------------------------------------- /hosted_logos/stepzen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/stepzen.svg -------------------------------------------------------------------------------- /hosted_logos/stepzen_inc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/stepzen_inc.svg -------------------------------------------------------------------------------- /hosted_logos/supply.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/supply.svg -------------------------------------------------------------------------------- /hosted_logos/swapcard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/swapcard.svg -------------------------------------------------------------------------------- /hosted_logos/swiftgraphql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/swiftgraphql.svg -------------------------------------------------------------------------------- /hosted_logos/tailcall.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/tailcall.svg -------------------------------------------------------------------------------- /hosted_logos/tartiflette.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/tartiflette.svg -------------------------------------------------------------------------------- /hosted_logos/the-new-york-times-adopter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/the-new-york-times-adopter.svg -------------------------------------------------------------------------------- /hosted_logos/the_guild.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/the_guild.svg -------------------------------------------------------------------------------- /hosted_logos/travaux_com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/travaux_com.svg -------------------------------------------------------------------------------- /hosted_logos/tridge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/tridge.svg -------------------------------------------------------------------------------- /hosted_logos/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/twitter.svg -------------------------------------------------------------------------------- /hosted_logos/tyk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/tyk.svg -------------------------------------------------------------------------------- /hosted_logos/tyk_technologies_ltd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/tyk_technologies_ltd.svg -------------------------------------------------------------------------------- /hosted_logos/type-graphql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/type-graphql.svg -------------------------------------------------------------------------------- /hosted_logos/vazco.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/vazco.svg -------------------------------------------------------------------------------- /hosted_logos/wayfair.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/wayfair.svg -------------------------------------------------------------------------------- /hosted_logos/weaviate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/weaviate.svg -------------------------------------------------------------------------------- /hosted_logos/werkspot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/werkspot.svg -------------------------------------------------------------------------------- /hosted_logos/world-kinect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/world-kinect.svg -------------------------------------------------------------------------------- /hosted_logos/wundergraph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/wundergraph.svg -------------------------------------------------------------------------------- /hosted_logos/yelp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/yelp.svg -------------------------------------------------------------------------------- /hosted_logos/yugabyte.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/hosted_logos/yugabyte.svg -------------------------------------------------------------------------------- /images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/images/favicon.png -------------------------------------------------------------------------------- /images/left-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/images/left-logo.svg -------------------------------------------------------------------------------- /images/qr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/images/qr.svg -------------------------------------------------------------------------------- /images/right-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/images/right-logo.svg -------------------------------------------------------------------------------- /images/support-graphql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/images/support-graphql.svg -------------------------------------------------------------------------------- /landscape.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/HEAD/landscape.yml --------------------------------------------------------------------------------