pnicolaou
02/26/2018, 8:29 PMtype User {
name: String,
posts: [Post!]!
}
I want to replace the posts for the user. But I am not sure how.
If I do
mutation {
updateUser(
where: {id: "123"},
data: {
posts: {
create: [{title: 'hi}, {title: 'hey'}]
}
}
)
}
It just appends the posts, instead of replacing them