GraphQL - Type Relationships
You have this GraphQL schema:
But your query for
type Category { products: [Product] } type Product { category: Category }But your query for
category { products { category { id } }} returns null for category inside products. What is the likely cause?