I am using C# to connect to IBM Cloudant. IBM Cloudant supports JSON queries IBM Cloudant, it is mentioned that I need to use a POST request in order to create a query but it is not explained, I am using HttpClient which has a method PostAsync method. Does anyone have an idea how to use this method to create a query for example the following query:
{
"selector": {
"_id": {
"$gt": null
}
}
}