Changes
- BREAKING: one relation fields on a type used to include a where argument. This argument has been removed now as it was not intended to be part of the API in the first place. Here is an example:
before the change
type Todo implements Node {
id: ID!
title: String!
user(where: UserWhereInput): User!
}
after the change
type Todo implements Node {
id: ID!
title: String!
user: User!
}