In the mutation, I figured the shape might be some...
# orm-help
d
In the mutation, I figured the shape might be something like this:
Copy code
ingredients: {
  create: [
    {
      quantity: ??? ← what do I put here? There are multiple ingredients so multiple values for quantity
      ingredient: {
        connect: ??? ← what do I put here? There are multiple ingredients and each one connects to a specific ingredient in the db
      }
    }
  ]
}
Can anyone help? I’ve been asking about this for 3 days now and haven’t had an answer on this part. 😕