As stated, using a route query in GraphQL and an InternalUrl fragment I was getting no results for metatags on a view. After a little digging with my debugger I could see that the Metatags resolver was yielding a CacheableValue rather than the value itself, so I changed it to yield the value and my results were returned.
With that said, I don't know what the implications of that change are. Will it break caching?
As stated, using a route query in GraphQL and an
InternalUrl
fragment I was getting no results for metatags on a view. After a little digging with my debugger I could see that the Metatags resolver was yielding a CacheableValue rather than the value itself, so I changed it to yield the value and my results were returned.With that said, I don't know what the implications of that change are. Will it break caching?