-
-
Notifications
You must be signed in to change notification settings - Fork 596
Parse.Object.fromJSON creates empty record in DB #482
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
Comments
I saw this as well. Look like
@flovilmart Is this by design or for offline use? |
I’m not sure, i’ll Have to investigate more, starting with when it was added :) |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
I check the code and no set called from parse object
|
SDK package version: 1.10.0
When I use Parse.Object.fromJSON on NodeJS server, record are being created containing only
objectId
,createdAt
,updatedAt
. All other properties i have passed in my JSON are being ignored.In the example below I am trying to create an object with properties
a
andb
, but they are not being passed to server. At first I create an object and then getting this object by its ID to see if it has my properties.Here is my code:
console output from first console.log():
output from second console.log():
Is it a bug or i am doing something wrong?
The text was updated successfully, but these errors were encountered: