Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Excerpt

You can extend any search to document fulltext and/or metadata. Therefore you can You wish to find all of your companies' literature where a certain product is mentioned or any documents that mention the CEO, then simply add the searchType to the URL as a query string parameter.

Code Block
 //search in fulltext
&searchType=FullText

...

Documents contain text. You can do so because Picturepark will read out the text in documents. By default, the simple search in the content browser searches in the metadata and document fulltext. It is possible to change this behavior by appending a query string parameter in the URL. The parameterName is "searchType" and the supported parameter values are:

  • Metadata (only finds hits in Metadata that is available to the search)

  • FullText (only finds values in the FullText)

  • MetadataAndFullText (finds values in both Metadata and Fulltext)

Info

You will not get a hit with an AND search in the simple search if one term is in the Fulltext and one term is in the Metadata. We do not split the terms in the simple search to look through both indexes for partial matches.

Code Block
//search in fulltext
&searchType=FullText

//search in metadata and fulltext
&searchType=MetadataAndFullText

//search in metadata only (default behavior without search query parameter)
&searchType=Metadata

//URL exampleexamples
https://customer.picturepark.com/ContentBrowser/XChannelrootChannel?search=BasicInformationablutophobia&searchType=Metadata
https://customer.picturepark.com/ContentBrowser/rootChannel?search=ablutophobia&searchType=FullText
https://customer.picturepark.com/ContentBrowser/rootChannel?search=ablutophobia&searchType=MetadataAndFullText