react-apollo
react-apollo copied to clipboard
Image in Getting Started page is wrong
What
The image in https://www.howtographql.com/react-apollo/1-getting-started/
demonstrating how to create a new post has the wrong mutation name

Expected
mutation CreateApolloLink {
post(
description: "Prisma gives you a powerful database toolkit 😎"
url: "https://prisma.io"
) {
id
}
}
Reality
mutation CreateApolloLink {
createPost(
description: "Prisma gives you a powerful database toolkit 😎"
url: "https://prisma.io"
) {
id
}
}