Hi all.
public function includeChild(Parent $parent): Item
{
// How can I set `includes` for child transformer here?
// without request param /parent?include=child.*
return $this->item($parent->child, new ChildTransformer());
}
Thank you for your help.