Im trying to get the records with id's greater than 1000 let's say. and I'm using unirest in java. I've tried to use queryString but it did not work.
HttpResponse<JsonNode> responsePatientTest = Unirest.get(Util.URL + "/sometable")
.queryString("Id","> 1000" )
.basicAuth("user", "pass")
.asJson();
maybe it's because I'm not familiar with unirest. is there a way to do this with queryString? if not,Could you suggest another way?
https://my.site/sometable?Id=> 1000. I seriously doubt if this is the case. If the backend isn't written by you, ask your backend guy for an explaination on their APIs.