├── .github ├── ISSUE_TEMPLATE │ ├── config.yml │ ├── landscape_feedback.yml │ ├── new-landscape-entry.yml │ └── update-landscape-entry.yml ├── PULL_REQUEST_TEMPLATE.md ├── landscape_feedback.yml └── workflows │ ├── automerge.yaml │ ├── build.yml │ ├── marksuccessfulbuild.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: -------------------------------------------------------------------------------- 1 | name: Provide feedback on the Landscape 2 | description: Share any feedback you have on the GraphQL Landscape and how we can improve it. 3 | assignees: 4 | - jmertic 5 | body: 6 | - type: textarea 7 | id: feedback 8 | attributes: 9 | label: "Thank you for providing feedback on improving the GraphQL Landscape. Please update the title above and add your feedback below" 10 | validations: 11 | required: true 12 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-landscape-entry.yml: -------------------------------------------------------------------------------- 1 | name: New Landscape Entry 2 | description: New entry for the Landscape 3 | title: New Landscape Entry - [PROJECT] 4 | labels: ['new entry'] 5 | assignees: 6 | - jmertic 7 | body: 8 | - type: markdown 9 | attributes: 10 | value: "Thank you for your interest in adding your project to the GraphQL Landscape. Please complete the form below to add your project to the GraphQL Landscape." 11 | - type: input 12 | id: name 13 | attributes: 14 | label: Project Name 15 | description: Also update `[PROJECT]` in the title above 16 | validations: 17 | required: true 18 | - type: textarea 19 | id: description 20 | attributes: 21 | label: Description 22 | validations: 23 | required: true 24 | - type: input 25 | id: webpage 26 | attributes: 27 | label: Homepage URL 28 | validations: 29 | required: true 30 | - type: input 31 | id: repo_url 32 | attributes: 33 | label: Repo URL 34 | validations: 35 | required: true 36 | - type: input 37 | id: organization 38 | attributes: 39 | label: Organization hosting or owning the project 40 | validations: 41 | required: true 42 | - type: textarea 43 | id: logo 44 | attributes: 45 | label: Logo 46 | description: Logo preferably should be in SVG, EPS, or AI format 47 | placeholder: Drag and drop logo here or provide link to the logo 48 | validations: 49 | required: true 50 | - type: dropdown 51 | id: category 52 | attributes: 53 | label: Category 54 | description: Pick the best category for your project 55 | options: 56 | - Tools 57 | - Databases 58 | - Services 59 | validations: 60 | required: true 61 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/update-landscape-entry.yml: -------------------------------------------------------------------------------- 1 | name: Update Landscape Entry 2 | description: Let us know if a landscape entry needs corrected. 3 | title: Update Landscape Entry for [PROJECT] 4 | labels: ['update entry'] 5 | assignees: 6 | - jmertic 7 | body: 8 | - type: markdown 9 | attributes: 10 | value: Please put the name of the project in place of [PROJECT] in the title above, and then detail below the changes needed. 11 | - type: textarea 12 | attributes: 13 | label: Changes requested 14 | validations: 15 | required: true 16 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | # **NOTE: If you are requesting updates to project or member organization information, please follow the instructions in the README.md file.** 2 | 3 | ### Pre-submission checklist: 4 | 5 | *Please check each of these after submitting your pull request:* 6 | 7 | * [ ] Are you only including a `repo_url` if your project is 100% open source? If so, you need to pick the single best GitHub repository for your project, not a GitHub organization. 8 | * [ ] Is your project closed source or, if it is open source, does your project have at least 300 GitHub stars? 9 | * [ ] Have you picked the single best (existing) category for your project? 10 | * [ ] Have you included a URL for your SVG or added it to `hosted_logos` and referenced it there? 11 | * [ ] Have you verified that the Crunchbase data for your organization is correct (including headquarters and LinkedIn)? 12 | * [ ] Does it follow the other guidelines from the [new entries](https://github.com/graphql/graphql-landscape#new-entries) section? 13 | * [ ] ~10 minutes after opening the pull request, the CNCF-Bot will post the URL for your staging server. Have you confirmed that it looks good to you and then added a comment to the PR saying "LGTM"? 14 | -------------------------------------------------------------------------------- /.github/landscape_feedback.yml: -------------------------------------------------------------------------------- 1 | name: Provide feedback on the Landscape 2 | description: Share any feedback you have on the LF Energy Landscape and how we can improve it. 3 | assignees: 4 | - jmertic 5 | body: 6 | - type: textarea 7 | id: feedback 8 | attributes: 9 | label: "Thank you for providing feedback on improving the LF Energy Landscape. Please update the title above and add your feedback below" 10 | validations: 11 | required: true 12 | -------------------------------------------------------------------------------- /.github/workflows/automerge.yaml: -------------------------------------------------------------------------------- 1 | name: Autocommit pull requests 2 | 3 | on: 4 | workflow_dispatch: 5 | pull_request: 6 | types: [labeled] 7 | 8 | jobs: 9 | build: 10 | runs-on: ubuntu-latest 11 | 12 | steps: 13 | - name: Automerge Pull Request if possible 14 | uses: "pascalgn/automerge-action@v0.13.0" 15 | env: 16 | GITHUB_TOKEN: "${{ github.token }}" 17 | MERGE_LABELS: "automerge" 18 | MERGE_RETRY_SLEEP: 300000 19 | MERGE_METHOD: "squash" 20 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- 1 | name: Build Landscape from LFX 2 | 3 | on: 4 | workflow_dispatch: 5 | schedule: 6 | - cron: "0 11 * * *" 7 | 8 | jobs: 9 | build: 10 | runs-on: ubuntu-latest 11 | steps: 12 | - uses: jmertic/lfx-landscape-tools@main 13 | with: 14 | project_processing: skip 15 | env: 16 | token: ${{ secrets.PAT }} 17 | repository: ${{ github.repository }} 18 | ref: ${{ github.ref }} 19 | -------------------------------------------------------------------------------- /.github/workflows/marksuccessfulbuild.yml: -------------------------------------------------------------------------------- 1 | name: "Set Issue Label on successful build" 2 | on: 3 | workflow_dispatch: 4 | issue_comment: 5 | types: [created] 6 | 7 | jobs: 8 | test: 9 | runs-on: ubuntu-latest 10 | steps: 11 | - uses: Amwam/issue-comment-action@v1.3.1 12 | if: ${{ github.event.issue.pull_request && contains(github.event.issue.labels.*.name, 'automated-build') }} 13 | with: 14 | keywords: '["Deploy preview for *graphql-landscape* ready"]' 15 | labels: '["automerge"]' 16 | github-token: "${{ secrets.PAT }}" 17 | -------------------------------------------------------------------------------- /.github/workflows/preview.yml: -------------------------------------------------------------------------------- 1 | name: Preview 2 | 3 | permissions: 4 | pull-requests: write 5 | 6 | on: 7 | pull_request_target: 8 | branches: 9 | - main 10 | - master 11 | paths: 12 | - 'landscape.yml' 13 | - 'hosted_logos/*' 14 | types: 15 | - opened 16 | 17 | jobs: 18 | comment: 19 | runs-on: ubuntu-latest 20 | steps: 21 | - uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 22 | env: 23 | LANDSCAPE_URL: 'https://landscape.graphql.org' 24 | DATA_FILE: 'landscape.yml' 25 | LOGOS_PATH: 'hosted_logos' 26 | OWNER: ${{ github.event.pull_request.head.repo.owner.login }} 27 | REPO: ${{ github.event.pull_request.head.repo.name }} 28 | REF: ${{ github.event.pull_request.head.ref }} 29 | with: 30 | script: | 31 | const { LANDSCAPE_URL, DATA_FILE, LOGOS_PATH, OWNER, REPO, REF } = process.env 32 | const comment = `You can preview your changes by [visiting this link](${LANDSCAPE_URL}/?overlay-data=https://raw.githubusercontent.com/${OWNER}/${REPO}/${REF}/${DATA_FILE}&overlay-logos=https://raw.githubusercontent.com/${OWNER}/${REPO}/${REF}/${LOGOS_PATH}).\n\n> [!NOTE]\n > This feature is still experimental and may not work as expected in some cases. Please report any issues you find!` 33 | 34 | github.rest.issues.createComment({ 35 | issue_number: context.issue.number, 36 | owner: context.repo.owner, 37 | repo: context.repo.repo, 38 | body: comment 39 | }) 40 | -------------------------------------------------------------------------------- /.github/workflows/validate.yml: -------------------------------------------------------------------------------- 1 | name: Validate 2 | 3 | on: 4 | merge_group: 5 | pull_request: 6 | branches: 7 | - main 8 | - master 9 | 10 | jobs: 11 | validate-landscape: 12 | runs-on: ubuntu-latest 13 | name: "Validate landscape.yml file" 14 | steps: 15 | - uses: actions/checkout@v4 16 | - uses: cncf/landscape2-validate-action@v2 17 | with: 18 | target_kind: data 19 | target_path: ./landscape.yml 20 | - uses: pascalgn/automerge-action@v0.16.4 21 | if: success() 22 | env: 23 | GITHUB_TOKEN: "${{ secrets.PAT }}" 24 | MERGE_LABELS: "automated-build" 25 | MERGE_RETRY_SLEEP: 300000 26 | MERGE_METHOD: "squash" 27 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | debug.log 2 | build/ 3 | missing.csv 4 | http_cache.sqlite 5 | *.json 6 | dist/ 7 | 8 | ### MacOS - https://github.com/github/gitignore/blob/main/Global/macOS.gitignore ### 9 | 10 | # General 11 | .DS_Store 12 | .AppleDouble 13 | .LSOverride 14 | 15 | # Icon must end with two \r 16 | Icon 17 | 18 | 19 | # Thumbnails 20 | ._* 21 | 22 | # Files that might appear in the root of a volume 23 | .DocumentRevisions-V100 24 | .fseventsd 25 | .Spotlight-V100 26 | .TemporaryItems 27 | .Trashes 28 | .VolumeIcon.icns 29 | .com.apple.timemachine.donotpresent 30 | 31 | # Directories potentially created on remote AFP share 32 | .AppleDB 33 | .AppleDesktop 34 | Network Trash Folder 35 | Temporary Items 36 | .apdisk 37 | 38 | ### Linux - https://github.com/github/gitignore/blob/main/Global/Linux.gitignore ### 39 | *~ 40 | 41 | # temporary files which can be created if a process still has a handle open of a deleted file 42 | .fuse_hidden* 43 | 44 | # KDE directory preferences 45 | .directory 46 | 47 | # Linux trash folder which might appear on any partition or disk 48 | .Trash-* 49 | 50 | # .nfs files are created when an open file is removed but is still being accessed 51 | .nfs* 52 | 53 | ### Windows - https://github.com/github/gitignore/blob/main/Global/Windows.gitignore ### 54 | 55 | # Windows thumbnail cache files 56 | Thumbs.db 57 | Thumbs.db:encryptable 58 | ehthumbs.db 59 | ehthumbs_vista.db 60 | 61 | # Dump file 62 | *.stackdump 63 | 64 | # Folder config file 65 | [Dd]esktop.ini 66 | 67 | # Recycle Bin used on file shares 68 | $RECYCLE.BIN/ 69 | 70 | # Windows Installer files 71 | *.cab 72 | *.msi 73 | *.msix 74 | *.msm 75 | *.msp 76 | 77 | # Windows shortcuts 78 | *.lnk 79 | -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- 1 | # Code of Conduct 2 | 3 | We follow the [LF Events Code of Conduct](https://events.linuxfoundation.org/about/code-of-conduct/). 4 | -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- 1 | slug: gql 2 | landscapeMemberClasses: 3 | - name: General Membership 4 | category: General 5 | landscapeMemberCategory: GraphQL Foundation Member 6 | memberSuffix: " (member)" 7 | projectsDefaultCrunchbase: https://www.crunchbase.com/organization/graphql-foundation 8 | -------------------------------------------------------------------------------- /hosted_logos/adayroi-adopter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hosted_logos/airbnb.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 31 | 32 | -------------------------------------------------------------------------------- /hosted_logos/allocine-adopter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hosted_logos/amplitude-adopter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hosted_logos/apollo-cli.svg: -------------------------------------------------------------------------------- 1 | apollo-cli -------------------------------------------------------------------------------- /hosted_logos/apollo-graphql.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | 11 | 13 | 14 | 15 | 19 | 23 | 26 | 27 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /hosted_logos/appier.svg: -------------------------------------------------------------------------------- 1 | 2 | 16 | 22 | 35 | 37 | 38 | -------------------------------------------------------------------------------- /hosted_logos/artsy.svg: -------------------------------------------------------------------------------- 1 | artsy-logo -------------------------------------------------------------------------------- /hosted_logos/atlassian.svg: -------------------------------------------------------------------------------- 1 | Atlassian-horizontal-blue-rgb -------------------------------------------------------------------------------- /hosted_logos/atlassian_inc.svg: -------------------------------------------------------------------------------- 1 | Atlassian-vertical-blue-rgb 2 | -------------------------------------------------------------------------------- /hosted_logos/atlassian_us_inc.svg: -------------------------------------------------------------------------------- 1 | Atlassian-vertical-blue-rgb 2 | -------------------------------------------------------------------------------- /hosted_logos/attendify-adopter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hosted_logos/audi.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hosted_logos/bazinga-adopter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hosted_logos/blockchain_technology_partners_inc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 10 | 11 | 12 | 13 | 14 | 16 | 18 | 22 | 23 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /hosted_logos/buildkite.svg: -------------------------------------------------------------------------------- 1 | Buildkite logo -------------------------------------------------------------------------------- /hosted_logos/circle-hd-adopter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hosted_logos/clubmed.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 9 | 10 | 14 | 15 | 17 | 19 | 22 | 25 | 28 | 31 | 32 | -------------------------------------------------------------------------------- /hosted_logos/configure-one.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 9 | 10 | 11 | 12 | 15 | 18 | 19 | 20 | 21 | 24 | 26 | 28 | 29 | 32 | 33 | 34 | 35 | 36 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /hosted_logos/craftcms.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | Craft CMS logo 6 | 9 | 12 | 15 | 19 | 22 | 25 | 28 | 31 | 34 | 35 | -------------------------------------------------------------------------------- /hosted_logos/credit-karma-adopter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hosted_logos/cube.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /hosted_logos/curio.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hosted_logos/dailymotion.svg: -------------------------------------------------------------------------------- 1 | Dailymotion (supporter) logo -------------------------------------------------------------------------------- /hosted_logos/directlyrics.svg: -------------------------------------------------------------------------------- 1 | directlyrics-3 -------------------------------------------------------------------------------- /hosted_logos/duedil.svg: -------------------------------------------------------------------------------- 1 | DueDil-logo -------------------------------------------------------------------------------- /hosted_logos/edgedb.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /hosted_logos/ediket.svg: -------------------------------------------------------------------------------- 1 | ediket -------------------------------------------------------------------------------- /hosted_logos/elementl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 18 | 19 | 20 | 22 | 23 | 25 | 27 | 29 | 31 | 33 | 34 | 35 | 37 | 39 | 41 | 42 | 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /hosted_logos/fauna.svg: -------------------------------------------------------------------------------- 1 | 2 | image/svg+xml -------------------------------------------------------------------------------- /hosted_logos/file-jet-adopter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hosted_logos/github.svg: -------------------------------------------------------------------------------- 1 | GitHub (member) logo -------------------------------------------------------------------------------- /hosted_logos/goldman_sachs__co_llc.svg: -------------------------------------------------------------------------------- 1 | GS_Signature_Black -------------------------------------------------------------------------------- /hosted_logos/goldman_sachs_co.svg: -------------------------------------------------------------------------------- 1 | GS_Signature_Black -------------------------------------------------------------------------------- /hosted_logos/grafbase.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /hosted_logos/graphcool.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hosted_logos/hackages-adopter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hosted_logos/hasura.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /hosted_logos/hasura_inc.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /hosted_logos/hijup.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hosted_logos/housing-anywhere-adopter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hosted_logos/instacart.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /hosted_logos/international_business_machines_corporation.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hosted_logos/intuit.svg: -------------------------------------------------------------------------------- 1 | Intuit (member) logo -------------------------------------------------------------------------------- /hosted_logos/intuit_inc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /hosted_logos/klm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /hosted_logos/kyma.svg: -------------------------------------------------------------------------------- 1 | 2 | Kyma Logo 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /hosted_logos/lyft.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | logo_standard 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /hosted_logos/marriott.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | 12 | 15 | 16 | 23 | 24 | 25 | 29 | 30 | -------------------------------------------------------------------------------- /hosted_logos/meta.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hosted_logos/meta_platforms_inc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | Logo of Meta Platforms -- Graphic created by Detmar Owen 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 25 | 26 | -------------------------------------------------------------------------------- /hosted_logos/nashtech.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 9 | 10 | 27 | 28 | 30 | 32 | 34 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /hosted_logos/neo4j.svg: -------------------------------------------------------------------------------- 1 | Neo4j logo -------------------------------------------------------------------------------- /hosted_logos/neo4j_inc.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hosted_logos/newrelic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 10 | 11 | 13 | 15 | 17 | 20 | 23 | 26 | 29 | 31 | 33 | 36 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /hosted_logos/nhost.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /hosted_logos/one-medical.svg: -------------------------------------------------------------------------------- 1 | 12 | One Medical 13 | 40 | 41 | -------------------------------------------------------------------------------- /hosted_logos/pinterest.svg: -------------------------------------------------------------------------------- 1 | Pinterest (member) logo -------------------------------------------------------------------------------- /hosted_logos/prisma_data_inc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 18 | 19 | 43 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /hosted_logos/rakuten.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 25 | -------------------------------------------------------------------------------- /hosted_logos/saleor_commerce.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /hosted_logos/satispay.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hosted_logos/serverless.svg: -------------------------------------------------------------------------------- 1 | Serverless logo -------------------------------------------------------------------------------- /hosted_logos/shopify.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hosted_logos/shopify_inc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 10 | 11 | 12 | 20 | 21 | 23 | 26 | 27 | 28 | 29 | 32 | 35 | 38 | 41 | 43 | 44 | 46 | 49 | 50 | 51 | 52 | -------------------------------------------------------------------------------- /hosted_logos/supply.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /hosted_logos/tartiflette.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /hosted_logos/travaux_com.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /hosted_logos/tridge.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hosted_logos/twitter.svg: -------------------------------------------------------------------------------- 1 | Twitter (member) logo -------------------------------------------------------------------------------- /hosted_logos/tyk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /hosted_logos/tyk_technologies_ltd.svg: -------------------------------------------------------------------------------- 1 | Tyk (member) logo -------------------------------------------------------------------------------- /hosted_logos/vazco.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql/graphql-landscape/8fb7bec2872ddf2beaf865c48f22825780ac665d/images/favicon.png -------------------------------------------------------------------------------- /images/qr.svg: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------