DatahubGraphQLQueryQuery SamplesMany-to-Many Object RelationVersion: 2024.2On this pageMany-to-Many Object Relation Request Get the associated categories. { getCar(id: 9) { name categories { ... on object_Category { id name } } }} Response { "data": { "getCar": { "name": "E-Type", "categories": [ { "id": "559", "name": "Sports Cars" }, { "id": "555", "name": "Grand Tourer" } ] } }}