Closed rohinz closed 4 months ago
When executing any graphql operation of the GrapOS Platform API, the api always returns the value Service for the __typename field.
Service
__typename
Example:
query GetGraph($graphId: ID!) { graph(id: $graphId) { __typename id title } }
Variables:
{ "graphId": "apollo-platform" }
Response:
{ "data": { "graph": { "__typename": "Service", "id": "apollo-platform", "title": "Apollo Platform API" } } }
Expected Response:
{ "data": { "graph": { "__typename": "Graph", "id": "apollo-platform", "title": "Apollo Platform API" } } }
Same behavior for other queries, too.
The issue was fixed in one of the last releases
Context
When executing any graphql operation of the GrapOS Platform API, the api always returns the value
Service
for the__typename
field.Example:
Variables:
Response:
Expected Response:
Same behavior for other queries, too.
What type of feedback is this?