Open
Description
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
}
}
Metadata
Assignees
Labels
No labels
Activity