A list-item of a dynamic list fails to allow for the $object of the query to be included within the show/hide-if.
Given that a condition is defined by a function I require the queried object to be included.
How would this be achieved?
Eg:
     <list empty-message="Contact Support; No Master Categories Available">
         <list-item query="categories" hide-if="$:hide_shelter_category($object)">
             <header>{description}</header>            
             <accent label="$:countQuestions($object)" color="positive" />
             <action on-press="$:goToCategory($selection)" />
             <asset icon="$:check_completeStatus($object, 'icon')" color="$:check_completeStatus($object, 'colour')" />
         </list-item>
     </list>```