Hi. I am not seeing a way to retrieve the fields of an inline fragment from the DataFetchingEnvironment.
The following query yields id,type,status but not other. GetFragmentsByName returns nothing. So not sure how i am supposed to access this field?
{
things {
id
type
status
...on ChildType {
other
}
}