Hi i am new to elastic search database, When i want to search with fields I am getting following error. Help me to solve this.
Trace: [query_parsing_exception] [filtered] query does not support [fields], with { index=test_database line=1 col=58 }
My Code to search:
client.search({
index: 'test_database',
body: {
query : {
match_all : {},
fields: ["price","brand"]
},
}
})