queryType wird bei wfsSearch nicht berücksichtigt

Issue #1241 open
Jakob Wilhelm created an issue

Bei der Konfiguration eines Auswahlfelds mit "queryType": "like" oder "queryType": "equal" entsteht in beiden Fällen die gleiche Filter-Abfrage.

"field": {
  "queryType": "like",
  "inputLabel": "Flur",
  "fieldName": "flur"
}

Die Konfiguration oberhalb für ein einfaches Text-Eingabefeld erzeugt immer den folgenden Filter im HTTP-Request. Erwartet wäre bei Nutzung von "queryType": "like", dass <ogc:PropertyIsLike … im Filter verwendet wird und nicht <ogc:PropertyIsEqualTo...

<ogc:Filter xmlns:ogc="<http://www.opengis.net/ogc>" xmlns:gml="<http://www.opengis.net/gml>">
    <ogc:PropertyIsEqualTo matchCase="false">
        <ogc:PropertyName>flur</ogc:PropertyName><ogc:Literal>1</ogc:Literal>
    </ogc:PropertyIsEqualTo>
</ogc:Filter>

Comments (1)

  1. Log in to comment