We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
which means they're passed around as strings which will never match conditions if you do something like:
2.0.0-p0 :011 > Parse::Query.new('_User').greater_than('createdAt', Parse::Query.new('_User').get.first['createdAt']).get 2013-05-23 17:16:06 [INFO] Parse query for /1/users {"where"=>"{}"} 2013-05-23 17:16:07 [INFO] Parse query for /1/users {"where"=>"{"createdAt":{"$gt":"2013-05-02T15:25:43.714Z"}}"}
The text was updated successfully, but these errors were encountered:
@ericcj what's the correct object to store them as? Time objects?
Time
Sorry, something went wrong.
all other dates come back as Parse::Date
@ericcj I think it has something to do with how Parse sends back the query results. Can you provide an example of what do you mean when you say
?
can i split the dates of updatedAt when i call in my javascript site
No branches or pull requests
which means they're passed around as strings which will never match conditions if you do something like:
2.0.0-p0 :011 > Parse::Query.new('_User').greater_than('createdAt', Parse::Query.new('_User').get.first['createdAt']).get
2013-05-23 17:16:06 [INFO] Parse query for /1/users {"where"=>"{}"}
2013-05-23 17:16:07 [INFO] Parse query for /1/users {"where"=>"{"createdAt":{"$gt":"2013-05-02T15:25:43.714Z"}}"}
The text was updated successfully, but these errors were encountered: