My mutations have suddenly a weird behaviour.
My schema looks like this:
type Item {
id: ID!
translations: [Translations] @hasMany(indexName: "translationsByObject", fields: ["id"])
title: String
description: String
}
type Translations {
id: ID!
text: String
}
When I update the item title for example I setup the reponse to also receive the translations, but now the connected tables are not fetched anymore. Can somebody confirm?