SlideShare a Scribd company logo
Five ways to query SharePoint
2013 Search
Corey Roth - Infusion
www.sharepointsummit.org
Corey Roth
From Houston, TX
Principal Architect at Infusion Development
SP2 Apps for SharePoint 2013
Three-time Microsoft SharePoint MVP
Specializing in ECM, Search, and apps
2
www.sharepointsummit.org
Contact
E-mail: coreyroth@gmail.com
Twitter: @coreyroth
Blog: www.dotnetmafia.com
Apps: www.sp2apps.com
3
www.sharepointsummit.org
Key Takeaways
Understanding Keyword Queries
Querying from the Server
Querying from the Client
Choosing the right API
4
www.sharepointsummit.org
Back to Basics
Building Queries
www.sharepointsummit.org
(Re)introducing the Keyword Query
Language (KQL)
You’ve been using KQL and may not know it
OOTB Search Box uses KQL
Supports simple and advanced queries
Recommended query language for SharePoint
www.sharepointsummit.org
Querying exactly what you want
Use OOTB Managed Properties
Author, Write (Modified Date), Path, FileSize,
FileExtension, and more
Create your own managed properties
Maps to your own site columns
Created automatically now with owa prefix
Managed at Search Schema at SA or Site Collection
Recrawl after mapping properties
7
www.sharepointsummit.org
Constructing Keyword Queries
Use wildcard operator (*) to find more results
i.e.: account* finds account, accounts, accountant,
and accounting
Use >, >=, <, <= operators to query results by
date
i.e.: Write>=“1/1/2013”
Query by author or title using built-in managed
properties
i.e.: Author:”Christina Murphy”
i.e.: Title:”Budget 2012” 8
www.sharepointsummit.org
Helpful Built-in Managed Properties
Managed Property Description
Author Author of document
Site Used to query items by URL
Title Title of page or document
Write Date document was modified
IsDocument Set to 1 to return only documents
ContentType Query by content type of item
9
www.sharepointsummit.org
Result Sources
Replaces scopes (now deprecated)
Several included OOTB
Ex: Documents, Popular, Recently Changed Items
10
www.sharepointsummit.org
Result Sources
Can only be queried by Id (Guid) 
ScopeId Keyword
IDs can only be retrieved via managed API
Most OOTB IDs are the same across farms
http://tinyurl.com/b5bflbl
11
Demo
Keyword Queries
12
www.sharepointsummit.org
Testing Queries Easily
New query testing interface in SharePoint 2013
Available in:
Script Search Web Part
Content Search Web Part
13
Demo
Search Web Parts
14
www.sharepointsummit.org
Querying by
Query String
www.sharepointsummit.org
Using the Query String
Use the k parameter to query search
Construct keyword query in your own app
Let SharePoint handle displaying results
Great for:
Custom advanced search pages
Querying from external apps
www.sharepointsummit.org
Querying from full
trust code
www.sharepointsummit.org
Full Trust Code – Server Object Model
Use KeywordQuery class for full trust solutions
Must execute directly on SharePoint farm
Uses same KQL syntax
www.sharepointsummit.org
KeywordQuery Class
Set query with KeywordText property
Use new SearchExecutor class to query
Filter result tables with Filter()
Great for:
Managed Code on SharePoint farm
19
www.sharepointsummit.org
KeywordQuery - Snippet
20
Demo
KeywordQuery
21
www.sharepointsummit.org
Querying from
the Client
Managed CSOM
22
www.sharepointsummit.org
Managed CSOM
Great for:
Provider hosted apps
Remote .NET Application
www.sharepointsummit.org
Using Managed CSOM
Uses similar KeywordQuery and
SearchExecutor classes
Requires a client context
References
Microsoft.SharePoint.Client.dll
Microsoft.SharePoint.Client.Runtime.dll
Microsoft.SharePoint.Client.Search.dll
24
www.sharepointsummit.org
Managed CSOM – Code Sample
25
Demo
Managed CSOM
26
www.sharepointsummit.org
Querying from
the Client
Search Client Object Model
www.sharepointsummit.org
Searching with JavaScript CSOM
Uses similar KeywordQuery and
SearchExecutor objects
Results easier to parse than REST
REST is still preferred method
www.sharepointsummit.org
JavaScript CSOM Code Sample
29
Demo
JavaScript CSOM
30
www.sharepointsummit.org
Querying from
the Client
REST
www.sharepointsummit.org
REST
New Search REST API added
Available at /_api/search/query
Use querytext parameter to query
Enclose query in single quotes
Example
http://server/_api/search/query?querytext=’SharePoint’
Test directly in the browser
www.sharepointsummit.org
REST + JavaScript
Assemble REST API URL
Include path to REST API
Use KQL in querytext parameter
Use $.ajax() to execute query
Include Headers: { “Accept”: “application/json; odata=verbose” }
Retrieve search results from:
data.d.query.PrimaryQueryResult.RelevantResults.Table.Rows.results
Great for
Apps and Web Parts
33
Demo
Search using REST
34
Demo
REST API + JavaScript
35
www.sharepointsummit.org
Which API?
API Use
KeywordQuery (Server OM) Full trust solutions on SharePoint
KeywordQuery (Client OM) Provider hosted apps
JavaScript + REST SharePoint-hosted Apps, remote applications
JavaScript CSOM SharePoint-hosted Apps, Web Parts, etc.
Web Services Never
36
www.sharepointsummit.org
Deprecated /
Obsolete Features
www.sharepointsummit.org
Deprecated / Obsolete Features
FAST Query Language (FQL) – deprecated
Full Text SQL Query - obsolete
Search Web Services - deprecated
www.sharepointsummit.org
Key Takeaways
Understanding Keyword Queries
Querying from the Server
Querying from the Client
Choosing the right API
39
www.sharepointsummit.org
Resources
Query Search with the KeywordQuery Class
http://tinyurl.com/c9q76le
Query Search with the Managed Client Object
Model
http://tinyurl.com/ckxhm8g
Querying Search with JavaScript CSOM
http://tinyurl.com/d685a5g
Querying Search with JavaScript and REST
http://tinyurl.com/dyhwvje
40
Thank you for your attention!
This presentation will be available on the Toronto
SharePoint Summit web site a few days after the event.
Please rate this session!
Fill out the survey and get a chance to win a Surface

More Related Content

PPTX
10 Things I Like in SharePoint 2013 Search
PPTX
SharePoint 2013 'Search': What you need to Know!
PPTX
SharePoint 2013 Search - Whats new for End Users
PPTX
Kql and the content search web part
PDF
SharePoint 2013 – the upgrade story
PDF
Sps boston 2014_o365_power_shell_csom_amitv
PPTX
SharePoint Saturday Perth 2013 - Overview of Search in SharePoint Server 201...
PPTX
SharePoint 2013 Search Topology and Optimization
10 Things I Like in SharePoint 2013 Search
SharePoint 2013 'Search': What you need to Know!
SharePoint 2013 Search - Whats new for End Users
Kql and the content search web part
SharePoint 2013 – the upgrade story
Sps boston 2014_o365_power_shell_csom_amitv
SharePoint Saturday Perth 2013 - Overview of Search in SharePoint Server 201...
SharePoint 2013 Search Topology and Optimization

What's hot (20)

PPTX
Understanding and Applying Cloud Hybrid Search
PPTX
Integrating the BCS with Search in SharePoint 2013
PPTX
search driven intranets
PPTX
Cloud Hybrid Search with SharePoint
PPTX
Understanding and Applying Cloud Hybrid Search
PDF
Take Cloud Hybrid Search to the Next Level
PPTX
Developing Search-driven application in SharePoint 2013
PPTX
SharePoint 2013 search improvements
PPTX
PDF
Fried sp techcon hybrid search deeper dive
PPTX
Bpc10 119 agnes-molnar_implementingsearch
PPTX
Understanding and programming the SharePoint REST API
PPTX
SP24S088 - Custom Indexing Connectors - How to integrate external systems int...
PPTX
Azure search
PPTX
#SPSPhilly search topology & optimization
PPTX
Using Azure Search to build Office 365 search driven solutions
PDF
Internet Sites in Microsoft Azure Using SharePoint 2013 - Solution Model
PPTX
Developing a Custom FAST Search Server 2010 for SharePoint Solution - Share...
PPTX
SharePoint Saturday DFW 2015 - Build a SharePoint 2013 Search Driven Application
PDF
Enterprise search-sizing-ha-and-migration-path
Understanding and Applying Cloud Hybrid Search
Integrating the BCS with Search in SharePoint 2013
search driven intranets
Cloud Hybrid Search with SharePoint
Understanding and Applying Cloud Hybrid Search
Take Cloud Hybrid Search to the Next Level
Developing Search-driven application in SharePoint 2013
SharePoint 2013 search improvements
Fried sp techcon hybrid search deeper dive
Bpc10 119 agnes-molnar_implementingsearch
Understanding and programming the SharePoint REST API
SP24S088 - Custom Indexing Connectors - How to integrate external systems int...
Azure search
#SPSPhilly search topology & optimization
Using Azure Search to build Office 365 search driven solutions
Internet Sites in Microsoft Azure Using SharePoint 2013 - Solution Model
Developing a Custom FAST Search Server 2010 for SharePoint Solution - Share...
SharePoint Saturday DFW 2015 - Build a SharePoint 2013 Search Driven Application
Enterprise search-sizing-ha-and-migration-path
Ad

Similar to Fives ways to query SharePoint 2013 Search - SharePoint Summit Toronto 2013 (20)

PPTX
Introduction to SharePoint 2013
PPTX
Ektron 8.5 RC - Search
PPTX
Fried sps boston hybrid talk
PPTX
Fried sps boston hybrid talk
PDF
Fried sps boston hybrid share point
PPTX
Charla desarrollo de apps con sharepoint y office 365
PDF
Fried dallas spug
PPTX
2014 SharePoint Saturday Melbourne Apps or not to Apps
PPTX
Intro apps
PPTX
What's new for Developers in SharePoint 2013
PPTX
Customizing SharePoint 2013 search display templates
PDF
Fried baspug hybrid share point
PPTX
API Workshop: Deep dive into REST APIs
PPTX
Exam 70-489 Developing Microsoft SharePoint Server 2013 Advanced Solutions Le...
PDF
Instant Access to Go Building Web Applications 1st Edition Nathan Kozyra Mat ...
PPTX
Office 365 - Introduction to SharePoint Online Development - SharePoint Conne...
PPTX
Building search-driven Windows 8 and Windows Phone 8 apps for SharePoint Serv...
PDF
Fried houston spug
PDF
(Ebook) Go: Building Web Applications by Nathan Kozyra, Mat Ryer
PPTX
Intro to SharePoint for Developers
Introduction to SharePoint 2013
Ektron 8.5 RC - Search
Fried sps boston hybrid talk
Fried sps boston hybrid talk
Fried sps boston hybrid share point
Charla desarrollo de apps con sharepoint y office 365
Fried dallas spug
2014 SharePoint Saturday Melbourne Apps or not to Apps
Intro apps
What's new for Developers in SharePoint 2013
Customizing SharePoint 2013 search display templates
Fried baspug hybrid share point
API Workshop: Deep dive into REST APIs
Exam 70-489 Developing Microsoft SharePoint Server 2013 Advanced Solutions Le...
Instant Access to Go Building Web Applications 1st Edition Nathan Kozyra Mat ...
Office 365 - Introduction to SharePoint Online Development - SharePoint Conne...
Building search-driven Windows 8 and Windows Phone 8 apps for SharePoint Serv...
Fried houston spug
(Ebook) Go: Building Web Applications by Nathan Kozyra, Mat Ryer
Intro to SharePoint for Developers
Ad

More from Corey Roth (20)

PPTX
Introduction to Microsoft Teams and Office 365 Groups
PPTX
Compliance and eDiscovery with Office 365
PPTX
Surfacing Your External Data using BCS in SharePoint 2013 - Dev Connections 2013
POTX
Configuring SharePoint Search for an Optimal Document Management Experience
PPTX
Publishing SharePoint 2013 Apps to the Office Store - Austin SharePoint Users...
PPTX
What you need to know about Search in SharePoint 2013 Preview - DFW SharePoin...
PPTX
Office 365 - Introduction to SharePoint Online Development - Lync and Learn
PPTX
New SharePoint development features using Visual Studio 2012 - SharePoint Sat...
PPTX
Pitching Office 365 to your Energy Customers - Microsoft Worldwide Partner Co...
PPTX
Making the Most of Search in SharePoint Online - TechEd North America
PPTX
New SharePoint development features using Visual Studio 11 - San Antonio Shar...
PPTX
Office 365 - Introduction to SharePoint Online Development - SharePoint Satur...
PPTX
Extending SharePoint 2010 to your customers and partners
PPTX
Advanced BCS - Business Data Connectivity Models and Custom Connectors - SPTe...
PPTX
Instant ECM with SharePoint 2010 - SPTechCon Boston 2011
PPTX
SharePoint 2010 Development for ASP.NET Developers - SharePoint Saturday Hous...
PPTX
Getting the most ouf of SharePoint Search - Tulsa SharePoint Interest Group
PPTX
Instant ECM with SharePoint 2010
PPTX
SharePoint 2010 Development for ASP.NET Developers - Tyson Devcon 2010
PPTX
Advanced BCS - Business Data Connectivity Models and Custom Connectors
Introduction to Microsoft Teams and Office 365 Groups
Compliance and eDiscovery with Office 365
Surfacing Your External Data using BCS in SharePoint 2013 - Dev Connections 2013
Configuring SharePoint Search for an Optimal Document Management Experience
Publishing SharePoint 2013 Apps to the Office Store - Austin SharePoint Users...
What you need to know about Search in SharePoint 2013 Preview - DFW SharePoin...
Office 365 - Introduction to SharePoint Online Development - Lync and Learn
New SharePoint development features using Visual Studio 2012 - SharePoint Sat...
Pitching Office 365 to your Energy Customers - Microsoft Worldwide Partner Co...
Making the Most of Search in SharePoint Online - TechEd North America
New SharePoint development features using Visual Studio 11 - San Antonio Shar...
Office 365 - Introduction to SharePoint Online Development - SharePoint Satur...
Extending SharePoint 2010 to your customers and partners
Advanced BCS - Business Data Connectivity Models and Custom Connectors - SPTe...
Instant ECM with SharePoint 2010 - SPTechCon Boston 2011
SharePoint 2010 Development for ASP.NET Developers - SharePoint Saturday Hous...
Getting the most ouf of SharePoint Search - Tulsa SharePoint Interest Group
Instant ECM with SharePoint 2010
SharePoint 2010 Development for ASP.NET Developers - Tyson Devcon 2010
Advanced BCS - Business Data Connectivity Models and Custom Connectors

Recently uploaded (20)

PPTX
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PDF
Machine learning based COVID-19 study performance prediction
PDF
NewMind AI Monthly Chronicles - July 2025
PDF
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PPTX
Big Data Technologies - Introduction.pptx
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
PDF
Approach and Philosophy of On baking technology
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
Electronic commerce courselecture one. Pdf
DOCX
The AUB Centre for AI in Media Proposal.docx
PPTX
MYSQL Presentation for SQL database connectivity
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
Spectral efficient network and resource selection model in 5G networks
PPTX
A Presentation on Artificial Intelligence
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
Machine learning based COVID-19 study performance prediction
NewMind AI Monthly Chronicles - July 2025
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Big Data Technologies - Introduction.pptx
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
Approach and Philosophy of On baking technology
Mobile App Security Testing_ A Comprehensive Guide.pdf
Electronic commerce courselecture one. Pdf
The AUB Centre for AI in Media Proposal.docx
MYSQL Presentation for SQL database connectivity
Understanding_Digital_Forensics_Presentation.pptx
Diabetes mellitus diagnosis method based random forest with bat algorithm
Spectral efficient network and resource selection model in 5G networks
A Presentation on Artificial Intelligence

Fives ways to query SharePoint 2013 Search - SharePoint Summit Toronto 2013