-
### Is your feature request related to a problem?
OpenSearch 2.10 introduced the ability to do [hybrid querying](https://opensearch.org/blog/hybrid-search/), where you can use multiple queries and no…
-
`DslBase.__init__()` typing does not accept dict unpacking, hence all `Query` subclasses.
https://github.com/elastic/elasticsearch-dsl-py/blob/318ea9a9e4b792325556671e1537df9032ee4e65/elasticsearch_d…
-
Implement simple query DSL to satisfy search requests from storefront.
The DSL must support:
- [ ] product search
- [ ] product filtering by categories
-
Just saw this in k8s logs:
```
Traceback (most recent call last):
File "/opt/courtlistener/manage.py", line 15, in
main()
File "/opt/courtlistener/manage.py", line 11, in main
execute_fr…
-
the AND operator (or may be xxxx +yyyy) as mentioned here
https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-query-string-query.html#query-string-syntax
should return only r…
-
Currently, to add a cidr filter, users have to use Query DSL format. Would be great to have it supported via UI input too for values like `10.0.0.0/8`.
-
These statements might not work correctly:
``` java
DSL.using(configuration)
.select(A, B, count())
.from(T)
.groupBy(a, b)
.orderBy(count())
.seek(10)
.limit(10);
```
…
-
DSL例如
```
data class Page(val pageNo: Int, val pageSize: Int, val totalRecords: Int, val records: Query)
fun Query.paging(pageNo: Int, pageSize: Int): Page {
val records = this.limit(pageSiz…
-
When searching a column for a value, I get an error:
> parsing_exception: unknown query [filtered]
Query is
> _doc/_search: {"size":50,"query":{"filtered":{"filter":{"and":[{"term":{"type":"arti…
-
### Expected behavior
While this query doesn't really make sense, jOOQ should be able to generate valid SQL for it.
### Actual behavior
jOOQ generates a query that reference an identifier that …