hardware resource which has a belongs_to: :system relationship with a system resource which is on a different domain, and I would like to fetch the hardware with its system with specific fields. If I use the following value for the fields parameter, the attributes in the response include the system with the default_fields defined for that resource, which is expected:fields parameter so that I can specify the fields for system, I get an invalid_type error for fields[system]:invalid_type error, the fields returned for the relationship are the default_fields for that resource.includes [:system] on the hardware resource and using the include parameter, but the data of that relationship only returns the id and type of the system resource, which is even less helpful. I would really appreciate an example of how to get this working correctly.