Open mrivoal opened 7 years ago
let's look for &
, the full search generates the request:
http://knora.unil.ch/v1/search/&?searchtype=fulltext
&
is a problem because it is a URL specific code, so it doesn't work.
The usual way is to "url-encode" it as %26
, but I guess that the knora responder doesn't "url decode" the argument, as this request doesn't find my &
:
http://knora.unil.ch/v1/search/%26?searchtype=fulltext
If you include characters such as
-
,#
,&
and/
(and there may be others) in a value (including the label), you won't be able to find them in the full-text search.So, if you search for an URL value, you won't get any search result.
It may also happen in the advanced search, but as there is no operator available for the URIValue (#569), I don't know.