-
Couldn't load subscription status.
- Fork 24
Added support for pagination and queries in general. #47
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
|
||
| int count=0; | ||
| for(std::list<std::string>::iterator iter = queries.begin();count < index+1; count++, iter++){ | ||
| // for safety, let's make the private iterators point somewhere before deleting |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ohh my Gawd ://
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Awesome, dude :)
Appreciate the fact that you actually didn't miss anything, just pure buttery code.
Thanks for creating this SDK and allowing me to contribute in some way :) |
You are welcome to contribute more. We'll be glad <3 |
|
Hey man. Our Query class is not compatible with appwrite 1.7 because they changed the request format. but now in version 1.7, it requires a URL encoded string like: In my personal project I simply hardcoded again replacing the old request style and it's working fine, but what do you suggest? Should we keep 1.6 queries format or totally replace it for this new one? P.S. Personally I don't understand why they did this. Everytime we have square brackets "[ ]" in the query we now replace for %5B %5D but in the beginning of the string they kept the square brackets |
I think it's better if we go on with the stable 1.6.x version as of now. coz this minor change could bring up many discrepancies in the queries. |
Now it's possible to get all the documents from big collections and perform all query methods appwrite supports excepts
searchbecause I don't really understand what it does exactly and how it is related to indexes.