<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How do I get the subfolders of a subfolder in nuxeo just by iterating in one go using nuxeo client in Nuxeo Forum</title>
    <link>https://connect.hyland.com/t5/nuxeo-forum/how-do-i-get-the-subfolders-of-a-subfolder-in-nuxeo-just-by/m-p/316185#M3186</link>
    <description>&lt;P&gt;There is nothing out of the box except all levels or first level. You can however automate your custom need using some JavaScript automation,&lt;/P&gt;</description>
    <pubDate>Fri, 18 Oct 2019 06:00:55 GMT</pubDate>
    <dc:creator>Patrick_Abgrall</dc:creator>
    <dc:date>2019-10-18T06:00:55Z</dc:date>
    <item>
      <title>How do I get the subfolders of a subfolder in nuxeo just by iterating in one go using nuxeo client</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-do-i-get-the-subfolders-of-a-subfolder-in-nuxeo-just-by/m-p/316178#M3179</link>
      <description />
      <pubDate>Wed, 16 Oct 2019 07:42:44 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-do-i-get-the-subfolders-of-a-subfolder-in-nuxeo-just-by/m-p/316178#M3179</guid>
      <dc:creator>Jyothsna_SM1</dc:creator>
      <dc:date>2019-10-16T07:42:44Z</dc:date>
    </item>
    <item>
      <title>Re: How do I get the subfolders of a subfolder in nuxeo just by iterating in one go using nuxeo client</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-do-i-get-the-subfolders-of-a-subfolder-in-nuxeo-just-by/m-p/316179#M3180</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;</description>
      <pubDate>Wed, 16 Oct 2019 07:54:51 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-do-i-get-the-subfolders-of-a-subfolder-in-nuxeo-just-by/m-p/316179#M3180</guid>
      <dc:creator>Gregory_Carlin</dc:creator>
      <dc:date>2019-10-16T07:54:51Z</dc:date>
    </item>
    <item>
      <title>Re: How do I get the subfolders of a subfolder in nuxeo just by iterating in one go using nuxeo client</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-do-i-get-the-subfolders-of-a-subfolder-in-nuxeo-just-by/m-p/316180#M3181</link>
      <description>&lt;P&gt;A guess of answer from &lt;A href="https://doc.nuxeo.com/nxdoc/nxql/" target="test_blank"&gt;https://doc.nuxeo.com/nxdoc/nxql/&lt;/A&gt; :&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;ecm:ancestorId: the id of an ancestor of the document (parent, grand-parent, etc., up to the root). This is only useable in a &lt;CODE&gt;WHERE&lt;/CODE&gt; clause with the syntax &lt;CODE&gt;ecm:ancestorId = 'some-doc-id'&lt;/CODE&gt; or &lt;CODE&gt;ecm:ancestorId &amp;lt;&amp;gt; 'some-doc-id'&lt;/CODE&gt;. It's an alternative to &lt;CODE&gt;ecm:path STARTSWITH '/some/doc/path'&lt;/CODE&gt; if you know the id instead of the path. See also ecm:path. (Since Nuxeo 5.9.6)&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;So If you're looking for a NXQL query to be used in a Nuxeo client, &lt;CODE&gt;SELECT * FROM Folder WHERE ecm:ancestorId = &amp;lt;top folder id&amp;gt;&lt;/CODE&gt; or &lt;CODE&gt;SELECT * FROM Document WHERE ecm:ancestorId = &amp;lt;top folder id&amp;gt; AND ecm:primaryType IN ('Folder', 'your custom type'...)&lt;/CODE&gt; might look like an answer to your question.&lt;/P&gt;
&lt;P&gt;Would you want only first level subfolders, the NXQL query would look like: &lt;CODE&gt;SELECT * FROM Folder WHERE ecm:parentId= &amp;lt;top folder id&amp;gt;&lt;/CODE&gt; or &lt;CODE&gt;SELECT * FROM Document WHERE ecm:parentId = &amp;lt;top folder id&amp;gt; AND ecm:primaryType IN ('Folder', 'your custom type'...)&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Oct 2019 11:34:52 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-do-i-get-the-subfolders-of-a-subfolder-in-nuxeo-just-by/m-p/316180#M3181</guid>
      <dc:creator>Patrick_Abgrall</dc:creator>
      <dc:date>2019-10-16T11:34:52Z</dc:date>
    </item>
    <item>
      <title>Re: How do I get the subfolders of a subfolder in nuxeo just by iterating in one go using nuxeo client</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-do-i-get-the-subfolders-of-a-subfolder-in-nuxeo-just-by/m-p/316181#M3182</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;</description>
      <pubDate>Fri, 18 Oct 2019 05:05:57 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-do-i-get-the-subfolders-of-a-subfolder-in-nuxeo-just-by/m-p/316181#M3182</guid>
      <dc:creator>Jyothsna_SM1</dc:creator>
      <dc:date>2019-10-18T05:05:57Z</dc:date>
    </item>
    <item>
      <title>Re: How do I get the subfolders of a subfolder in nuxeo just by iterating in one go using nuxeo client</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-do-i-get-the-subfolders-of-a-subfolder-in-nuxeo-just-by/m-p/316182#M3183</link>
      <description>&lt;P&gt;Hi Patrick,&lt;/P&gt;
&lt;P&gt;Getting all the sub-folders of a folder worked. Is there any way I can get sub-folders only till required level. I mean if I need only till second level or third level. Can we control how many levels to get?&lt;/P&gt;
&lt;P&gt;Thanks in advance!!&lt;/P&gt;</description>
      <pubDate>Fri, 18 Oct 2019 05:13:32 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-do-i-get-the-subfolders-of-a-subfolder-in-nuxeo-just-by/m-p/316182#M3183</guid>
      <dc:creator>Jyothsna_SM1</dc:creator>
      <dc:date>2019-10-18T05:13:32Z</dc:date>
    </item>
    <item>
      <title>Re: How do I get the subfolders of a subfolder in nuxeo just by iterating in one go using nuxeo client</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-do-i-get-the-subfolders-of-a-subfolder-in-nuxeo-just-by/m-p/316183#M3184</link>
      <description>&lt;P&gt;Hi Patrick,&lt;/P&gt;</description>
      <pubDate>Fri, 18 Oct 2019 05:14:04 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-do-i-get-the-subfolders-of-a-subfolder-in-nuxeo-just-by/m-p/316183#M3184</guid>
      <dc:creator>Jyothsna_SM1</dc:creator>
      <dc:date>2019-10-18T05:14:04Z</dc:date>
    </item>
    <item>
      <title>Re: How do I get the subfolders of a subfolder in nuxeo just by iterating in one go using nuxeo client</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-do-i-get-the-subfolders-of-a-subfolder-in-nuxeo-just-by/m-p/316184#M3185</link>
      <description>&lt;P&gt;There is nothing out of the box except all levels or first level. You can however automate your custom need using some JavaScript automation,&lt;/P&gt;</description>
      <pubDate>Fri, 18 Oct 2019 06:00:16 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-do-i-get-the-subfolders-of-a-subfolder-in-nuxeo-just-by/m-p/316184#M3185</guid>
      <dc:creator>Patrick_Abgrall</dc:creator>
      <dc:date>2019-10-18T06:00:16Z</dc:date>
    </item>
    <item>
      <title>Re: How do I get the subfolders of a subfolder in nuxeo just by iterating in one go using nuxeo client</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-do-i-get-the-subfolders-of-a-subfolder-in-nuxeo-just-by/m-p/316185#M3186</link>
      <description>&lt;P&gt;There is nothing out of the box except all levels or first level. You can however automate your custom need using some JavaScript automation,&lt;/P&gt;</description>
      <pubDate>Fri, 18 Oct 2019 06:00:55 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-do-i-get-the-subfolders-of-a-subfolder-in-nuxeo-just-by/m-p/316185#M3186</guid>
      <dc:creator>Patrick_Abgrall</dc:creator>
      <dc:date>2019-10-18T06:00:55Z</dc:date>
    </item>
    <item>
      <title>Re: How do I get the subfolders of a subfolder in nuxeo just by iterating in one go using nuxeo client</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-do-i-get-the-subfolders-of-a-subfolder-in-nuxeo-just-by/m-p/316186#M3187</link>
      <description>&lt;P&gt;I'm working on the backend only with java client I have no idea about java script. Is there a way we can do it on backend&lt;/P&gt;</description>
      <pubDate>Fri, 18 Oct 2019 06:47:21 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-do-i-get-the-subfolders-of-a-subfolder-in-nuxeo-just-by/m-p/316186#M3187</guid>
      <dc:creator>Jyothsna_SM1</dc:creator>
      <dc:date>2019-10-18T06:47:21Z</dc:date>
    </item>
    <item>
      <title>Re: How do I get the subfolders of a subfolder in nuxeo just by iterating in one go using nuxeo client</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-do-i-get-the-subfolders-of-a-subfolder-in-nuxeo-just-by/m-p/316187#M3188</link>
      <description>&lt;P&gt;hi  Gregory    [Gregory Carlin](https&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jan 2020 03:54:42 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-do-i-get-the-subfolders-of-a-subfolder-in-nuxeo-just-by/m-p/316187#M3188</guid>
      <dc:creator>Bhagat__Singh</dc:creator>
      <dc:date>2020-01-22T03:54:42Z</dc:date>
    </item>
    <item>
      <title>Re: How do I get the subfolders of a subfolder in nuxeo just by iterating in one go using nuxeo client</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-do-i-get-the-subfolders-of-a-subfolder-in-nuxeo-just-by/m-p/316188#M3189</link>
      <description>&lt;P&gt;Hello [Bhagat  Singh](https&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jan 2020 22:51:33 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-do-i-get-the-subfolders-of-a-subfolder-in-nuxeo-just-by/m-p/316188#M3189</guid>
      <dc:creator>a_c</dc:creator>
      <dc:date>2020-01-29T22:51:33Z</dc:date>
    </item>
  </channel>
</rss>

