ブール属性フィルタ

ブール属性割当てによるフィルタがサポートされます。

ブール値は、trueまたはfalse (大文字または小文字のいずれか)で指定できます。

たとえば、この問合せは、AFFINITY_CARDというブール単一割当て属性のfalseの割当てでフィルタ処理します。
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
   <soapenv:Header/>
   <soapenv:Body>
      <Request xmlns="http://www.endeca.com/MDEX/conversation/3/0">
        <Language>fr</Language>
        <State>
          <DataSourceFilter>
             <filterString>COUNTRY_NAME = 'France'</filterString>
          </DataSourceFilter>
          <SelectionFilter Id="BoolFlt">
             <filterString>AFFINITY_CARD = false</filterString>
          </SelectionFilter>
        </State>
        <RecordListConfig Id="Recs" MaxPages="20">
           <RecordsPerPage>5</RecordsPerPage>
        </RecordListConfig>
      </Request>
    </soapenv:Body>
</soapenv:Envelope>
返される各値には次の割当てが必要です。
<cs:Record>
   ...
   <cs:attribute name="AFFINITY_CARD" type="mdex:boolean">false</cs:attribute>
   ...
</cs:Record>