The docs for Apollo Server say that it supports markdown in documentation strings:
I followed the tutorial here:
Then I added this description to the books query:
type Query {
"""
Here's a description with some Markdown.
This is **bold** and this is *italic*.
Link to [google.com](https://google.com).
"""
books: [Book]
}
When I start the server and go to the explorer, the markdown is not interpreted; see attached screencap.
Is the documentation wrong, or am I missing something here?
My tutorial project is at github dot com , user timothymcmackin, project graphql-server-example. (Sorry, new user, can’t include more than 2 links.)