- Issue created by @codimpes
- @codimpes opened merge request.
Currently, the GraphQL Compose module does not include the title
of the View in the result set when querying a view using the provided GraphQL schema. In some use cases, such as decoupled applications, the view title is dynamically set and must be accessible to the frontend.
title
property is missing in the GraphQL result.Enhance the GraphQL Compose view output by adding the View title in the GraphQL result structure. For example:
{ "view": { "title": "Custom View Title", "results": [...] } }
This could be implemented via a result transformer or by extending the view query normalization logic.
None.
Adds a title
property to the GraphQL response for view queries.
None.