I'm using Algolia-helper-swift [0.1] with Algolia-client-swift [3.7] since im using xcode 7.3.1 and swift 2.0+ and my json structure snippet is as follows
"-KTKNoEhrdaBShtXJGM8" : {
"Book_name" : "Hello World",
"Book_price" : 7273,
"uploaded_by" : "John" }
Trial 1
{
"params": "facetFilters=[]&filters=Book_price%3E0%20AND%20uploaded_by:John&hitsPerPage=8&page=0&query=&restrictSearchableAttributes=[%22Book_name%22]"
}
Trial 2
{
"params": "facetFilters=[]&filters=Book_price%3E0%20AND%20uploaded_by:%22John%22&hitsPerPage=8&page=0&query=&restrictSearchableAttributes=[%22Book_name%22]"
}
Trial 3
{
"params": "facetFilters=[]&filters=Book_price%3E0&hitsPerPage=8&page=1&query=&restrictSearchableAttributes=[%22Book_name%22]"
}
Trial 4
{
"params": "facetFilters=[]&filters=uploaded_by:%22John%22&hitsPerPage=8&page=0&query=&restrictSearchableAttributes=[%22Book_name%22]"
}
The Trial 1,2 & 4 don't work returns me 0 results/hits the third however works but its a numerical logic. Please if someone could help me with this it would be great.