{{ message }}
📝 Fix dead Ariadne FastAPI docs link in How To - GraphQL#15815
Open
patrickwehbe wants to merge 2 commits into
Open
📝 Fix dead Ariadne FastAPI docs link in How To - GraphQL#15815patrickwehbe wants to merge 2 commits into
How To - GraphQL#15815patrickwehbe wants to merge 2 commits into
Conversation
The linked page https://ariadnegraphql.org/docs/fastapi-integration now returns 404; Ariadne removed their /docs/ tree. Repoint the "docs for FastAPI" link to the current canonical Ariadne resource, the project repository at https://github.com/mirumee/ariadne, whose README documents its ASGI/FastAPI integration. This is also where ariadnegraphql.org now links for documentation.
Contributor
Member
|
I think the link should be https://ariadnegraphql.org/server/Integrations/fastapi-integration |
Author
|
Good call, updated it to point at https://ariadnegraphql.org/server/Integrations/fastapi-integration instead of the repo. Thanks! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Description
The "docs for FastAPI" link under Ariadne on the How To - GraphQL page points to
https://ariadnegraphql.org/docs/fastapi-integration, which now returns HTTP 404. Ariadne reorganized their site and removed the old/docs/tree, so that page no longer exists.This repoints the link to the current canonical Ariadne resource: the project repository at
https://github.com/mirumee/ariadne, whose README documents Ariadne's ASGI/FastAPI integration ("ASGI and WSGI support, with integrations for Django, FastAPI, Flask, and Starlette"). The Ariadne website itself now links to this repository for documentation.Verification
Checked both URLs with
curl -L -A "Mozilla/5.0":https://ariadnegraphql.org/docs/fastapi-integration-> 404https://github.com/mirumee/ariadne-> 200Single-line change to
docs/en/docs/how-to/graphql.md.