I have the following fetch XMl
<fetch top="50" distinct="true">
<entity name="account">
<attribute name="new_companyname" />
<attribute name="accountid" />
<attribute name="name" />
<order attribute="name" />
<link-entity name="new_transactionsets" from="new_licenceid" to="accountid" link-type="inner">
<filter type="and">
<condition attribute="new_submittedon" operator="this-year" />
</filter>
</link-entity>
<link-entity />
</entity>
</fetch>
new_transactionsets has a 1:N relationship with new_transactions. new_transactions has a field new_type. Is there a way to return the new_type for the 1st associated record only?