Comments in GraphQL schema are in Markdown, so you can put links in them. I'd like a link in the comment for a type to point to another type, so readers of the documentation can browse from one type to the other.
For instance, I've tried this:
"""
A written or printed work consisting of pages glued or sewn together along one side and bound in covers.
A book has an [Author](Author).
"""
type Book {
id: ID
name: String
author: Author
}
In GraphiQL, this was correctly translated to a link but the destination was wrong.
I'm afraid this is not really possible, but I figured I'd ask anyway! :)