Hi all,

I'm trying to build a statefull query model to search in a complex property of 
a document. The property is defined in document's schema like this:

  <xs:complexType name="complexTypeInDocument">
    <xs:sequence>
      <xs:element name="item" type="complexType" minOccurs="0"
        maxOccurs="unbounded" />
    </xs:sequence>
  </xs:complexType>

where complexType is defined as follows:

  <xs:complexType name="complexType">
    <xs:sequence>
      <xs:element name="property1" type="xs:string" minOccurs="0"
        maxOccurs="unbounded" />
      <xs:element name="property2" type="xs:string" minOccurs="0"
        maxOccurs="unbounded" />
    </xs:sequence>
  </xs:complexType>

I need to search all documents that have property1 for example in a list of 
values. Is there a way to do this?

Mihai DURBACA
_______________________________________________
ECM mailing list
[email protected]
http://lists.nuxeo.com/mailman/listinfo/ecm

Reply via email to