You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Check out this issue for an ideal bug report. The closer your issue report is to that one, the more likely we are to be able to help, and the more likely we will be to fix the issue quickly!
For implementation related questions or technical support, please refer to the Stack Overflow and Server Fault communities.
Make sure these boxes are checked before submitting your issue -- thanks for reporting issues back to Parse Server!
Check out this issue for an ideal bug report. The closer your issue report is to that one, the more likely we are to be able to help, and the more likely we will be to fix the issue quickly!
For implementation related questions or technical support, please refer to the Stack Overflow and Server Fault communities.
Make sure these boxes are checked before submitting your issue -- thanks for reporting issues back to Parse Server!
Environment Setup
Parse-server running locally: v.2.2.4
Steps to reproduce
applicationId=XXXXX
masterKey=YYYYY
apiUrl="http://localhost:1337/parse"
curl -X POST "$apiUrl/schemas/Circle" -H "X-Parse-Application-Id: $applicationId" -H "X-Parse-Master-Key: $masterKey" -H "Content-Type: application/json" -d '{"className": "Circle", "fields": {"radius": {"type": "Number"}}}'
curl -X POST "$apiUrl/classes/Circle" -H "X-Parse-Application-Id: $applicationId" -H "Content-Type: application/json" -d '{"radius": 10}'
returns objectId: oMJAhjFRBt
curl -X POST "$apiUrl/schemas/Rectangle" -H "X-Parse-Application-Id: $applicationId" -H "X-Parse-Master-Key: $masterKey" -H "Content-Type: application/json" -d '{"className": "Rectangle", "fields": {"side1": {"type": "Number"}, "side2": {"type": "Number"}}}'
curl -X POST "$apiUrl/classes/Rectangle" -H "X-Parse-Application-Id: $applicationId" -H "Content-Type: application/json" -d '{"side1": 10, "side2": 20}'
returns objectId: kx4NoFUPLl
curl -X POST "$apiUrl/schemas/ComplexFigure" -H "X-Parse-Application-Id: $applicationId" -H "X-Parse-Master-Key: $masterKey" -H "Content-Type: application/json" -d '{"className": "ComplexFigure", "fields": {"consistsOf": {"type": "Array"}}}'
curl -X POST "$apiUrl/classes/ComplexFigure" -H "X-Parse-Application-Id: $applicationId" -H "Content-Type: application/json" -d '{"consistsOf": [{"__type": "Pointer", "className": "Circle", "objectId": "oMJAhjFRBt"}, {"__type": "Pointer", "className": "Rectangle", "objectId": "kx4NoFUPLl"}]}'
curl -X GET "$apiUrl/classes/ComplexFigure" -H "X-Parse-Application-Id: $applicationId" -H "Content-Type: application/json" -G --data-urlencode "include=consistsOf"
returns {"code":107,"error":"inconsistent type data for include"}
Logs/Trace
The text was updated successfully, but these errors were encountered: