Hi,
Im using the search service to search for items on LL 9.7.1
SingleSearchRequest query = new SingleSearchRequest();
query.DataCollectionSpec = "'Enterprise'"; // use the Enterprise search slice
query.QueryLanguage = "Livelink Search API V1"; // use the Search API for queries
query.FirstResultToRetrieve = 1; // start retrieving results at Result #1
query.NumResultsToRetrieve = 50; // retrieve up to 5 search results
query.ResultOrderSpec = "sortByRegion=OTCreatedBy"; // sort by the OTCreatedBy region
query.ResultSetSpec = "modifier1=wordbeginswith&modifier2=OTName&where1=" + whereClause; // set the where clause of the query
query.ResultTransformationSpec = new string[] { "OTDataID", "OTLocation", "OTName" };
i need to know how to write a query that would return me all folder starting with a particular value
eg: all folders starting with '1/1/1 - ' in the name
thanks in advance
Zak