<?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 to make a custom type field not queryable? in Nuxeo Forum</title>
    <link>https://connect.hyland.com/t5/nuxeo-forum/how-to-make-a-custom-type-field-not-queryable/m-p/319783#M6784</link>
    <description>&lt;P&gt;Then maybe the exact syntax used for configuration is wrong... Debugging inside &lt;CODE&gt;Model.inferFulltextInfo&lt;/CODE&gt; would help if you have source code and a debugger.&lt;/P&gt;</description>
    <pubDate>Thu, 28 Aug 2014 15:39:10 GMT</pubDate>
    <dc:creator>Florent_Guillau</dc:creator>
    <dc:date>2014-08-28T15:39:10Z</dc:date>
    <item>
      <title>How to make a custom type field not queryable?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-to-make-a-custom-type-field-not-queryable/m-p/319775#M6776</link>
      <description>&lt;P&gt;Hi, how can I make a field not queryable, not indexed?&lt;/P&gt;
&lt;P&gt;I've created a custom type.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;&amp;lt;extension target="org.nuxeo.ecm.core.schema.TypeService" point="doctype"&amp;gt;
    &amp;lt;doctype name="custom:asset" extends="Document"&amp;gt;
        &amp;lt;schema name="common"/&amp;gt;
        &amp;lt;schema name="dublincore"/&amp;gt;
        &amp;lt;schema name="custom-asset"/&amp;gt;
    &amp;lt;/doctype&amp;gt;
&amp;lt;/extension&amp;gt;

&amp;lt;extension target="org.nuxeo.ecm.core.schema.TypeService" point="schema"&amp;gt;
    &amp;lt;schema name="custom-asset" src="schemas/custom-asset.xsd" prefix="customAsset" /&amp;gt;
&amp;lt;/extension&amp;gt;

&amp;lt;xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
           xmlns:nxs="http://example.com.br/contenttypes/schemas/custom-asset/"
           targetNamespace="http://example.com.br/contenttypes/schemas/custom-asset/"&amp;gt;
    &amp;lt;xs:element name="fieldNotQueryable" type="xs:string"/&amp;gt;
&amp;lt;/xs:schema&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Previus version, I could do something like this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;&amp;lt;extension target="org.nuxeo.ecm.core.search.service.SearchServiceImpl" point="resource"&amp;gt;
    &amp;lt;resource name="custom-asset" prefix="customAsset" indexAllFields="true" type="schema"&amp;gt;
        &amp;lt;field name="fieldNotQueryable" stored="true" indexed="false" type="Text" binary="false" sortable="true"/&amp;gt;
    &amp;lt;/resource&amp;gt;
&amp;lt;/extension&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Thanks in advance.
Fabio&lt;/P&gt;</description>
      <pubDate>Sat, 16 Aug 2014 01:07:12 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-to-make-a-custom-type-field-not-queryable/m-p/319775#M6776</guid>
      <dc:creator>fabioaraujo_</dc:creator>
      <dc:date>2014-08-16T01:07:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to make a custom type field not queryable?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-to-make-a-custom-type-field-not-queryable/m-p/319776#M6777</link>
      <description>&lt;P&gt;Guys here is what we already tried.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Aug 2014 23:32:46 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-to-make-a-custom-type-field-not-queryable/m-p/319776#M6777</guid>
      <dc:creator>Rafael_Bueno</dc:creator>
      <dc:date>2014-08-26T23:32:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to make a custom type field not queryable?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-to-make-a-custom-type-field-not-queryable/m-p/319777#M6778</link>
      <description>&lt;P&gt;This is not an answer, so don't add it as an answer. Instead edit your original question to add details/clarification. I moved this to a comment.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Aug 2014 14:22:17 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-to-make-a-custom-type-field-not-queryable/m-p/319777#M6778</guid>
      <dc:creator>Florent_Guillau</dc:creator>
      <dc:date>2014-08-28T14:22:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to make a custom type field not queryable?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-to-make-a-custom-type-field-not-queryable/m-p/319778#M6779</link>
      <description>&lt;P&gt;What is the purpose of not making a field queryable? Some kind of security restriction?&lt;/P&gt;
&lt;P&gt;You seem to want the field marked not queryable at the CMIS level. There is currently no configuration for this, all fields are queryable.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Aug 2014 14:23:35 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-to-make-a-custom-type-field-not-queryable/m-p/319778#M6779</guid>
      <dc:creator>Florent_Guillau</dc:creator>
      <dc:date>2014-08-28T14:23:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to make a custom type field not queryable?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-to-make-a-custom-type-field-not-queryable/m-p/319779#M6780</link>
      <description>&lt;P&gt;Actually we have some fields that are recorded technical information, which does not have any value to business, so when a user searches for a file he ends up finding files that do not make sense to him.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Aug 2014 14:47:26 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-to-make-a-custom-type-field-not-queryable/m-p/319779#M6780</guid>
      <dc:creator>Rafael_Bueno</dc:creator>
      <dc:date>2014-08-28T14:47:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to make a custom type field not queryable?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-to-make-a-custom-type-field-not-queryable/m-p/319780#M6781</link>
      <description>&lt;P&gt;There are two entirely different things.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Aug 2014 14:55:35 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-to-make-a-custom-type-field-not-queryable/m-p/319780#M6781</guid>
      <dc:creator>Florent_Guillau</dc:creator>
      <dc:date>2014-08-28T14:55:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to make a custom type field not queryable?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-to-make-a-custom-type-field-not-queryable/m-p/319781#M6782</link>
      <description>&lt;P&gt;Florent, but why using the excludeField the field still return on CONTAINS('c3') query ? Im using mult repository solution, thats a problem ?&lt;/P&gt;</description>
      <pubDate>Thu, 28 Aug 2014 15:12:58 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-to-make-a-custom-type-field-not-queryable/m-p/319781#M6782</guid>
      <dc:creator>Rafael_Bueno</dc:creator>
      <dc:date>2014-08-28T15:12:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to make a custom type field not queryable?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-to-make-a-custom-type-field-not-queryable/m-p/319782#M6783</link>
      <description>&lt;P&gt;I will remember on my next post.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Aug 2014 15:16:33 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-to-make-a-custom-type-field-not-queryable/m-p/319782#M6783</guid>
      <dc:creator>Rafael_Bueno</dc:creator>
      <dc:date>2014-08-28T15:16:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to make a custom type field not queryable?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-to-make-a-custom-type-field-not-queryable/m-p/319783#M6784</link>
      <description>&lt;P&gt;Then maybe the exact syntax used for configuration is wrong... Debugging inside &lt;CODE&gt;Model.inferFulltextInfo&lt;/CODE&gt; would help if you have source code and a debugger.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Aug 2014 15:39:10 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-to-make-a-custom-type-field-not-queryable/m-p/319783#M6784</guid>
      <dc:creator>Florent_Guillau</dc:creator>
      <dc:date>2014-08-28T15:39:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to make a custom type field not queryable?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-to-make-a-custom-type-field-not-queryable/m-p/319784#M6785</link>
      <description>&lt;P&gt;I will try debug.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Aug 2014 15:50:23 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-to-make-a-custom-type-field-not-queryable/m-p/319784#M6785</guid>
      <dc:creator>Rafael_Bueno</dc:creator>
      <dc:date>2014-08-28T15:50:23Z</dc:date>
    </item>
  </channel>
</rss>

