I am working on the howtographql tutorial on (<htt...
# orm-help
r
I am working on the howtographql tutorial on (https://www.howtographql.com/react-apollo/1-getting-started/ ). Has anyone ran into this issue, after prisma deploy, i try to run the following in the playground
Copy code
mutation CreatePrismaLink {
  post(
    description: "Prisma turns your database into a GraphQL API :sunglasses:",
    url: "<https://www.prismagraphql.com>"
  ) {
    id
  }
}

mutation CreateApolloLink {
  post(
    description: "The best GraphQL client for React",
    url: "<https://www.apollographql.com/docs/react/>"
  ) {
    id
  }
}
I get the following error "Error: Variable '$_v0_data' cannot be non input type 'LinkCreateInput!'. (line 1, column 22): mutation ($_v0_data: LinkCreateInput!)" Curious if anyone else noticed the same error