10,730
edits
Line 26: | Line 26: | ||
</entity> | </entity> | ||
</fetch></syntaxhighlight> | </fetch></syntaxhighlight> | ||
== Exclude entity from download == | |||
Use a non-sensical condition (primary key = null) to exclude an entity from download. | |||
<syntaxhighlight lang="xml><fetch> | |||
<entity name ="account"> | |||
<filter> | |||
<condition attribute="accountid" operator="null"/> | |||
</filter> | |||
</entity> | |||
</fetch></syntaxhighlight> | |||
== Recent emails == | == Recent emails == | ||