The keywordquery tag has no wiki summary.
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 ...
3
votes
1answer
49 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 ...
2
votes
1answer
186 views
Restrict Search not to show deleted managed property value
The default SharePoint behavior is to also search documents which have been deleted unless the content has been re-crawled or index is reset.
I am using a KeywordQuery to search items with a ...
2
votes
1answer
351 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 ...
1
vote
1answer
439 views
How to use LastModifiedTime in KeywordQuery?
I've been using FullTextSQLQuery or Search Web Service in my custom search solution till today. Wanted to explore KeywordQuery but usage of 'LastModifiedTime' in query doesn't return search results.
...
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
0answers
190 views
KeywordQuery problem
Can anyone help me with SharePoint 2010 KeywordQuery problem?
I have the following code to search user profile and sort results by managed property.
var keywordQuery = new ...
1
vote
0answers
291 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 ...
1
vote
1answer
241 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.
1
vote
2answers
582 views
Get all items from custom content type in Fast Search
I want to get all items of a custom content type while using fast search. I want to use keyword search but i also could use fql.
Can somebody show me how to do this in code? I'm getting restults for ...
0
votes
2answers
753 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
41 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
1answer
308 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?
0
votes
1answer
29 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
0answers
42 views
suffix and infix searches in SharePoint 2010 using keywordquery search
Is there a way to perform suffix or infix search in SharePoint 2010 using KeywordQuery search?
I want to search my site using scopes. I am using Property Restrictions and wildcards but i cannot ...
0
votes
2answers
149 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
1answer
63 views
Search only approved items using KeywordQuery
We have approval workflow for document library & content approval column was set to yes for it.We have used KeywordQuery on the library by creating separate scope.We want to display only approved ...
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
151 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
344 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 ...
0
votes
1answer
321 views
Possible to combine KeywordQuery and FullTextSqlQuery?
Basically I would like to get all results that would returned for a normal keyword query, but I want to filter those results with a WHERE clause. I tried using KeywordQuery or FullTextSqlQuery but ...
