From 761aae7883607a4071ac918b419884783e5f83b9 Mon Sep 17 00:00:00 2001 From: frank chen Date: Mon, 30 Nov 2020 10:30:04 +0800 Subject: [PATCH] fix desc of 'required' for granularity property --- docs/querying/searchquery.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/querying/searchquery.md b/docs/querying/searchquery.md index a5517134e61b..895e455070cc 100644 --- a/docs/querying/searchquery.md +++ b/docs/querying/searchquery.md @@ -57,7 +57,7 @@ There are several main parts to a search query: |--------|-----------|---------| |queryType|This String should always be "search"; this is the first thing Apache Druid looks at to figure out how to interpret the query.|yes| |dataSource|A String or Object defining the data source to query, very similar to a table in a relational database. See [DataSource](../querying/datasource.md) for more information.|yes| -|granularity|Defines the granularity of the query. See [Granularities](../querying/granularities.md).|yes| +|granularity|Defines the granularity of the query. See [Granularities](../querying/granularities.md).|no (default to `all`)| |filter|See [Filters](../querying/filters.md).|no| |limit| Defines the maximum number per Historical process (parsed as int) of search results to return. |no (default to 1000)| |intervals|A JSON Object representing ISO-8601 Intervals. This defines the time ranges to run the query over.|yes|