Reputation: 1624
I am trying to return more values using elastic search and i am getting an error with this url. The error just says error the URL i am trying to post to is:
http:/someserver.com/elasticSearch/media/_search?q=bowls-d{'from' : 0, 'size' : 100}
I am not sure what is wrong with the URL this, URL does work but i only get the default 10 hits back:
http:/someserver.com/elasticSearch/media/_search?q=bowls
Any ideas?
Upvotes: 0
Views: 164
Reputation: 30163
Try this:
http:/someserver.com/elasticSearch/media/_search?q=bowls&from=0&size=100
Upvotes: 1