<?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: PARENT Lucene query: how to get child nodes and the parent in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/parent-lucene-query-how-to-get-child-nodes-and-the-parent/m-p/68883#M44219</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for the info, very usefull ;-).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 11 Dec 2006 10:30:47 GMT</pubDate>
    <dc:creator>jtorres</dc:creator>
    <dc:date>2006-12-11T10:30:47Z</dc:date>
    <item>
      <title>PARENT Lucene query: how to get child nodes and the parent</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/parent-lucene-query-how-to-get-child-nodes-and-the-parent/m-p/68880#M44216</link>
      <description>Hi all.My problems with Lucene query continue.I would like how exactly the Lucene PARENT query works…..If I execute the following line of code&lt;IMG id="smileyfrustrated" class="emoticon emoticon-smileyfrustrated" src="https://migration33.stage.lithium.com/i/smilies/16x16_smiley-frustrated.png" alt="Smiley Frustrated" title="Smiley Frustrated" /&gt;tring path = "PARENT:\"" + STORE.getScheme() + "://" + STORE.getAddress() + "/" + "eec7d9d6-8470-11db-85c2-01d4040f47aa" + "\"";Query query = new Query(Cons</description>
      <pubDate>Wed, 06 Dec 2006 08:37:59 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/parent-lucene-query-how-to-get-child-nodes-and-the-parent/m-p/68880#M44216</guid>
      <dc:creator>sergio</dc:creator>
      <dc:date>2006-12-06T08:37:59Z</dc:date>
    </item>
    <item>
      <title>Re: PARENT Lucene query: how to get child nodes and the parent</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/parent-lucene-query-how-to-get-child-nodes-and-the-parent/m-p/68881#M44217</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1) Yes.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;&lt;BR /&gt;(PARENT:"ID"&amp;nbsp;&amp;nbsp;&amp;nbsp; ID:"ID") -ISCONTAINER:T&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;Find the node or its immediate children but not aux data entries.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;2) No. Not without using PATH. It is possible to use the partial bridge table information also held in the index but I would not advise this. I would just walk the results.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Andy&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Dec 2006 10:06:38 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/parent-lucene-query-how-to-get-child-nodes-and-the-parent/m-p/68881#M44217</guid>
      <dc:creator>andy</dc:creator>
      <dc:date>2006-12-06T10:06:38Z</dc:date>
    </item>
    <item>
      <title>Re: PARENT Lucene query: how to get child nodes and the parent</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/parent-lucene-query-how-to-get-child-nodes-and-the-parent/m-p/68882#M44218</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Many thanks Andy.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I started writing a Java method using recursion to get the first level of nodes and then to get, for each node, recursivly the next child levels.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I will share my code with the the community when it works fine.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;All the best,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Sergio&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Dec 2006 11:43:18 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/parent-lucene-query-how-to-get-child-nodes-and-the-parent/m-p/68882#M44218</guid>
      <dc:creator>sergio</dc:creator>
      <dc:date>2006-12-06T11:43:18Z</dc:date>
    </item>
    <item>
      <title>Re: PARENT Lucene query: how to get child nodes and the parent</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/parent-lucene-query-how-to-get-child-nodes-and-the-parent/m-p/68883#M44219</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for the info, very usefull ;-).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Dec 2006 10:30:47 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/parent-lucene-query-how-to-get-child-nodes-and-the-parent/m-p/68883#M44219</guid>
      <dc:creator>jtorres</dc:creator>
      <dc:date>2006-12-11T10:30:47Z</dc:date>
    </item>
  </channel>
</rss>

