Skip to content
New issue

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

[BUG] extra free-format object in match all query #571

Closed
amberzsy opened this issue Sep 12, 2024 · 1 comment
Closed

[BUG] extra free-format object in match all query #571

amberzsy opened this issue Sep 12, 2024 · 1 comment
Labels
bug Something isn't working untriaged

Comments

@amberzsy
Copy link
Contributor

What is the bug?

extra free-format object in match all query, which is not correct. public doc

    MatchAllQuery:
      allOf:
        - $ref: '#/components/schemas/QueryBase'
        - type: object

in json format would be

{
     "match_all": {}
}
[supported] or 
{
     "match_all": {
               "boost": 1.2,
                "_name": "xyz"
     }
}
[supported] or 
{
     "match_all": {
               "boost": 1.2,
                "_name": "xyz"
     }, 
     "any_key": {}
}
[not supported]

How can one reproduce the bug?

N/A

What is the expected behavior?

N/A

@amberzsy amberzsy added bug Something isn't working untriaged labels Sep 12, 2024
@dblock
Copy link
Member

dblock commented Sep 12, 2024

Closed via #572

@dblock dblock closed this as completed Sep 12, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working untriaged
Projects
None yet
Development

No branches or pull requests

2 participants