milesrichardson / ParsePy

A relatively up-to-date fork of ParsePy, the Python wrapper for the Parse.com API. Originally maintained by @dgrtwo
MIT License
515 stars 184 forks source link

How To Retrieve Objects based on Other Unique Columns #164

Open mirzaei-mm opened 7 years ago

mirzaei-mm commented 7 years ago

Hello,

I have a table which has a candidate key named "Id", and as you know, all tables have "objectId" too. how can I retrieve an object based on the "Id" column? I want to use get() method like this: MyTable.Query.get(Id='xxxxxxx'), instead of MyTable.Query.get(objectId='yyyyyy')

Thanks