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
I have additional field in my user profile github_login, I see that it is coming with the "raw" request:
github_login
In [218]: connection.User.please.raw().get(id=1) Out[218]: {u'groups': [], u'id': 1, u'links': {u'groups': u'/v1.1/instances/test/users/1/groups/', u'profile': u'/v1.1/instances/test/classes/user_profile/objects/1/', u'reset-key': u'/v1.1/instances/test/users/1/reset_key/', u'self': u'/v1.1/instances/test/users/1/'}, u'profile': {u'channel': None, u'channel_room': None, u'created_at': u'2016-05-31T18:33:41.408006Z', u'github_key': u'KEY', u'github_login': u'LOGIN', u'group': None, u'group_permissions': u'none', u'id': 1, u'links': {u'owner': u'/v1.1/instances/test/users/1/', u'self': u'/v1.1/instances/test/classes/user_profile/objects/1/'}, u'other_permissions': u'none', u'owner': 1, u'owner_permissions': u'full', u'revision': 4, u'updated_at': u'2016-06-04T22:54:34.221236Z'}, u'user_key': u'KEY', u'username': u'EMAIL}
But I can't reach it that way:
In [219]: connection.User.please.get(id=1)
(github_login available is not in the user profile object)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have additional field in my user profile
github_login
, I see that it is coming with the "raw" request:But I can't reach it that way:
(
github_login
available is not in the user profile object)The text was updated successfully, but these errors were encountered: