I use Unicorn to serialize items on the local file system. In this configuration, I have a collection containing many elements. These items do not have to be serialized for my file system, but the root folder should.
So, I have included the root folder, but how to configure Unicorn to skip its children?
<include database="master" path="/sitecore/content/mycollection" />
I would expect something like
<include database="master" path="/sitecore/content/mycollection" excludeChilds="true />
or
<include database="master" path="/sitecore/content/mycollection"><exclude "*" /></include>
source share