Skip to content

Commit 67e7c80

Browse files
author
Tobias Hauth
committed
add missing documentation
1 parent 52e43dc commit 67e7c80

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -296,3 +296,15 @@ If you are interested in the top queries for your `Engine` you can use:
296296
To see more top queries you can paginate through them using:
297297

298298
top_queries = client.analytics_top_queries('youtube', page=2)
299+
300+
Or you can get the top queries in a specific date range:
301+
302+
top_queries = client.analytics_top_queries_in_range('youtube', '2013-01-01', '2013-02-01')
303+
304+
If you want to improve you search results, you should always have a look at search queries, that return no results and perhaps add some Documents that match for this query or use our pining feature to add Documents for this query:
305+
306+
top_no_result_queries = client.analytics_top_no_result_queries('youtube')
307+
308+
You can also specify a date range for no result queries:
309+
310+
top_no_result_queries = client.analytics_top_no_result_queries('youtube', '2013-01-01', '2013-02-01')

0 commit comments

Comments
 (0)