react-apollo icon indicating copy to clipboard operation
react-apollo copied to clipboard

Image in Getting Started page is wrong

Open bernbecht opened this issue 3 years ago • 0 comments

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 image

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
  }
}

bernbecht avatar Feb 21 '22 08:02 bernbecht