Tagged Questions
3
votes
1answer
52 views
CSWP “Value of a field on the Page” Questions/Issues
We're trying to create a seach query that grabs a content type based on a taxonomy field added to our custom Publishing Page content type. We seem to be having one of two issues:
We don't know how ...
0
votes
1answer
30 views
keyword query with nullable
trying to query on multiple contenttype where one content type contains field XYClosed(Yes/No) and the other one does not contain it. So I created a scope and start writing fixed query. Returned ...
0
votes
1answer
43 views
Phonetic Search in normal search
Is it possible to have phonetic search in the normal search and not only in the peoplesearch?
I read that in SP2010 the KQL does not support phonetic search in Non-People-Searches. What about SP2013 ...
0
votes
2answers
155 views
How to search/query by Enterprise Keywords?
I'm doing a recommendation engine and I need to access the Enterprise Keywords of a document and search for other documents having at least 1 matching keyword.
So for example I have Document A which ...
0
votes
0answers
72 views
Error when result set to more than 2000 while querying Fast Search Server for Sharepoint
I developed a tool which allows user to select some Managed Properties (e.g. FileName, Author, FileType, Publisher etc) and a textbox to enter a search term. The result what we get is a tabular data ...
0
votes
1answer
155 views
KQL how to search for announcements that are not expired
I'm trying to search in an announcement list. I want the search to return only items, that aren't expired (ows_Expires >= [today]). I found, that ows_Expires is mapped to a managed property called ...
0
votes
1answer
348 views
KeywordQuery and Taxonomy fields
I'm programatically trying to use the Search Apis to find some documents.
In order to customize the process, I'm selecting some basic properties :
var query = new KeywordQuery(site)
{
QueryText ...
1
vote
0answers
293 views
Increase KeywordQuery QueryText max length in SP 2010
I am using SharePoint Server 2010. I faced some difficulties with the Core Search Results Web Part. The issue was that my query length was to be about 2500 characters. This long query served to filter ...
2
votes
1answer
353 views
KeywordQuery and Refiners: How to specify a RangeMapping Refiner?
I need to use the KeywordQuery class to connect to a FAST Search Server. I still want to be able to display refiners (much like the default Refiner Web Part).
The default refiner web part supports a ...
0
votes
2answers
760 views
Use Created datetime in keywordquery
I want to use the Created column in my keywoard query, like this:
KeywordQuery query = new KeywordQuery(site);
query.QueryText = "ContentType=\"Vraag\""; // AND TaskStatus<>Voltooid";
...
0
votes
1answer
311 views
How to define scope for specific content-type in KeywordQuery class
I can get results with simple text queries but i need to limit the results for a specific content-type. What should i do?
1
vote
2answers
2k views
Keyword query string in SharePoint Search
I need to create custom search web part with 3 filters. First filter will have all list names in a dropdown box. Second filter will have particular list column values(only 2 values like active and ...
1
vote
1answer
242 views
Search only document libraries using KeywordQuery
Is it possible using KeywordQuery to pull back all (only) records that are documents in document libraries? Wondering if there is a KeywordQuery.QueryText property I can use for this type of thing.
3
votes
3answers
1k views
How to enable phonetic results when using KeywordQuery?
I cannot seem to get a custom keyword query to return phonetic results when searching for people.
I have FAST search installed, and if I do a people search (in the FAST search center) for "Jon", I ...