GraphQL CRUD defines separate input types for create and update or delete. Can we use the conditional update as default which specifies both input and where and proceed with maybe a single mutate type?
Input type for create :
type Mutation {
createNote(input: CreateNoteInput!): Note
}
Input type for update :
type Mutation {
updateNote(input: MutateNoteInput!): Note
}
cc: @wtrocki @machi1990 @rareddy