basically I would like to do a mutation like this:...
# prisma-whats-new
s
basically I would like to do a mutation like this:
Copy code
mutation {
  createPokemon(name: "Charmander", type: FIRE) {
    type
  }

  createPokemon(name: "Bulbasaur", type: GRASS) {
    type
  }
}