We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tring to build query like below. https://druid.apache.org/docs/latest/querying/filters#search-filter
{ "filter": { "type": "search", "dimension": "product", "query": { "type": "insensitive_contains", "value": "foo" } } }
But the Search is define with Query as json:"builder,omitempty" in search.go , which won't have query field, but builder field.
json:"builder,omitempty"
type Search struct { Base Dimension string `json:"dimension,omitempty"` Query string `json:"builder,omitempty"` ExtractionFn builder.ExtractionFn `json:"extractionFn,omitempty"` FilterTuning *FilterTuning `json:"filterTuning,omitempty"` }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Tring to build query like below. https://druid.apache.org/docs/latest/querying/filters#search-filter
But the Search is define with Query as
json:"builder,omitempty"
in search.go , which won't have query field, but builder field.The text was updated successfully, but these errors were encountered: