Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Term and Range Query support (with aggregations) #1

Open
wants to merge 22 commits into
base: master
Choose a base branch
from

Conversation

deepjyoti30
Copy link
Collaborator

@deepjyoti30 deepjyoti30 commented Dec 1, 2023

cURL for range and term query:

curl --location 'localhost:8080/_reactivesearch' \
--header 'Content-Type: application/json' \
--data '{
    "query": [
        {
            "id": "range query",
            "table": "good-books",
            "type": "range",
            "dataField": "original_publication_year",
            "aggregations": [
                "min",
                "max",
                "histogram"
            ],
            "interval": 10,
            "execute": true
        },
        {
            "id": "term query",
            "type": "term",
            "table": "good-books",
            "dataField": "original_series",
            "size": 3,
            "aggregtionSize": 5,
            "execute": true
        }
    ]
}'

Loom of code walkthrough + demo

@deepjyoti30 deepjyoti30 marked this pull request as ready for review December 4, 2023 10:14
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant