GraphQL simple fragment matcher error – how to fix it
The reason to get the GraphQL simple fragment matcher error is that you use interface types (e.g '… on MediaImage') in your GraphQL queries. It occurs when you have two or more subtypes in your response (e.g MediaImage and Video that both inherit Media). To fix this you need [...]