Followed the instructions exactly and the app runs well, documents are getting inserted as well but the search is not working. It only says "still searching" Would could be possible reason for this?
Great video! I have one question. How can I implement the following query in flutter. It is a match_phrase POST fb-post/_search { "query": { "match_phrase": { "description" : { "query" : "deeply concerned", "slop": 2 } } } }
Hi, I believe this is what you need. "{\"size\":0,\"aggs\":{\"sales_over_time\":{\"date_histogram\":{\"field\":\"createdon\",\"calendar_interval\":\"hour\"},\"aggs\":{\"revenuetype\":{\"terms\":{\"field\":\"revenuetype\"},\"aggs\":{\"amount\":{\"sum\":{\"field\":\"amount\"}}}}}}}}" I usually use this link : tools.knowledgewalls.com/jsontostring I am assuming you are trying to send a query
Sorry my bad I didn't ask the question properly, so I have to do a post call as normally I use http package for doing it but how to make a elastic search query mean search query where you send body to the transport and get data and that's my json how to write the query is my questiom
Really informative and helpful
great video dude, and i like the music in the background.
Amazing video Kiibati! Thanks a ton!
Nice. Love the music in background too. Thanks.
Awesome! Will you make Flutter+Firebase Firestore+ ElasticSearch??
Yes, that video would be out hopefully next week.
Working on that right now : )
This is a good tutorial. Thanks!
Can you please update the package dependencies to latest version not compatible with your code
Awesome
Followed the instructions exactly and the app runs well, documents are getting inserted as well but the search is not working. It only says "still searching"
Would could be possible reason for this?
Me too 😂
Can you make aws+ elastic search+ flutter
would take a look into that
Great video! I have one question. How can I implement the following query in flutter. It is a match_phrase
POST fb-post/_search
{
"query": {
"match_phrase": {
"description" : {
"query" : "deeply concerned",
"slop": 2
}
}
}
}
Hi, I have a json format will you able to help me out with that, as I couldn't find useful articles..
for this..
{
"size": 0,
"aggs": {
"sales_over_time": {
"date_histogram": {
"field": "createdon",
"calendar_interval": "hour"
},
"aggs":{
"revenuetype":{
"terms":{
"field":"revenuetype"
},
"aggs":{
"amount":{
"sum":{
"field":"amount"
}
}
}
}
}
}
}
}
Hi,
I believe this is what you need.
"{\"size\":0,\"aggs\":{\"sales_over_time\":{\"date_histogram\":{\"field\":\"createdon\",\"calendar_interval\":\"hour\"},\"aggs\":{\"revenuetype\":{\"terms\":{\"field\":\"revenuetype\"},\"aggs\":{\"amount\":{\"sum\":{\"field\":\"amount\"}}}}}}}}"
I usually use this link : tools.knowledgewalls.com/jsontostring
I am assuming you are trying to send a query
Sorry my bad I didn't ask the question properly, so I have to do a post call as normally I use http package for doing it but how to make a elastic search query mean search query where you send body to the transport and get data and that's my json how to write the query is my questiom