Skip to content

Unable to save array of pointers in cloud code #434

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

Closed
nirvana74v opened this issue May 16, 2017 · 10 comments
Closed

Unable to save array of pointers in cloud code #434

nirvana74v opened this issue May 16, 2017 · 10 comments

Comments

@nirvana74v
Copy link

nirvana74v commented May 16, 2017

var planobjar = []; for(var item of plansel) { var planob = {"objectId": item.planid, "__type": "Pointer", "className": "Plans"}; var pobj = {"planid": planob, "qty": item.qty, "unit":item.unit}; planobjar.push(planob); } var nClass = Parse.Object.extend("myClass"); var robj = new nClass(); robj.set ( 'planSelection', planobjar); robj.save({ success: function(planres) { // code }, error:function(error) { // code } });

If I try to save this array into an array field it doesn't save, but if it's an array without pointer it saves properly

@flovilmart
Copy link
Contributor

flovilmart commented May 16, 2017

can you provide the server logs when running with VERBOSE=1?

@nirvana74v
Copy link
Author

nirvana74v commented May 16, 2017

verbose=1 throws huge log messages,

verbose: REQUEST for [POST] /parse/classes/Content: { "title": "Greasy Brown Goulash", "subheading": "This new dish is all the rage in France right now. Similar to pig slop, the gritty texture and uncommon ingredients really make your mouth cry. Pretty gross.", "blocks": [ { "title": "Cook beans and crickets", "block": "In a large stockpot, heat 1 cup kale until boiling and add the spice. Add ¼ lb live crickets and stir well. Cook until mushy and fully dead, about 30 minutes. Add 2 cans of pinto beans and pig’s feet. Bring to a boil.", "bigimage": "https://res.cloudinary.com/lettuce/image/upload/v1494627032/recipeimages/open-mind.jpg", "thumbimage": "https://res.cloudinary.com/lettuce/image/upload/c_thumb,h_324,w_432/v1494627032/recipeimages/open-mind.jpg", "at": "05:00", "it": "15:00" }, { "title": "Cook beans and crickets", "block": "In a large stockpot, heat 1 cup kale until boiling and add the spice. Add ¼ lb live crickets and stir well. Cook until mushy and fully dead, about 30 minutes. Add 2 cans of pinto beans and pig’s feet. Bring to a boil.", "bigimage": "https://res.cloudinary.com/lettuce/image/upload/v1494627914/recipeimages/address.jpg", "thumbimage": "https://res.cloudinary.com/lettuce/image/upload/c_thumb,h_324,w_432/v1494627914/recipeimages/address.jpg", "at": "05:00", "it": "15:00" }, { "title": "Cook beans and crickets", "block": "In a large stockpot, heat 1 cup kale until boiling and add the spice. Add ¼ lb live crickets and stir well. Cook until mushy and fully dead, about 30 minutes. Add 2 cans of pinto beans and pig’s feet. Bring to a boil.", "bigimage": "https://res.cloudinary.com/lettuce/image/upload/v1494631765/recipeimages/lavender_cake.jpg", "thumbimage": "https://res.cloudinary.com/lettuce/image/upload/c_thumb,h_324,w_432/v1494631765/recipeimages/lavender_cake.jpg", "at": "10:00", "it": "5:00" } ] } method=POST, url=/parse/classes/Content, x-real-ip=173.244.48.93, x-forwarded-for=173.244.48.93, x-nginx-proxy=true, host=parseapp.myserver.com, content-length=2520, accept=*/*, x-parse-application-id=RymBj0w6s7QMgq3asP63GsGAEdOYaW31kDvguyBU, x-parse-client-version=php1.2.2, x-parse-session-token=r:1e6518cf23139185edf1fc321a0dca2d, x-parse-rest-api-key=cYhINt9A2sP1yPyg8vd441uq5MDGQNhQDToSDJoK, content-type=application/json, title=Greasy Brown Goulash, subheading=This new dish is all the rage in France right now. Similar to pig slop, the gritty texture and uncommon ingredients really make your mouth cry. Pretty gross., drinkParing=Pinot Grigio, blocks=[title=Cook beans and crickets, block=In a large stockpot, heat 1 cup kale until boiling and add the spice. Add ¼ lb live crickets and stir well. Cook until mushy and fully dead, about 30 minutes. Add 2 cans of pinto beans and pig’s feet. Bring to a boil., bigimage=https://res.cloudinary.com/lettuce/image/upload/v1494627032/recipeimages/open-mind.jpg, thumbimage=https://res.cloudinary.com/lettuce/image/upload/c_thumb,h_324,w_432/v1494627032/recipeimages/open-mind.jpg, at=05:00, it=15:00, title=Cook beans and crickets, block=In a large stockpot, heat 1 cup kale until boiling and add the spice. Add ¼ lb live crickets and stir well. Cook until mushy and fully dead, about 30 minutes. Add 2 cans of pinto beans and pig’s feet. Bring to a boil., bigimage=https://res.cloudinary.com/lettuce/image/upload/v1494627914/recipeimages/address.jpg, thumbimage=https://res.cloudinary.com/lettuce/image/upload/c_thumb,h_324,w_432/v1494627914/recipeimages/address.jpg, at=05:00, it=15:00, title=Cook beans and crickets, block=In a large stockpot, heat 1 cup kale until boiling and add the spice. Add ¼ lb live crickets and stir well. Cook until mushy and fully dead, about 30 minutes. Add 2 cans of pinto beans and pig’s feet. Bring to a boil., bigimage=https://res.cloudinary.com/lettuce/image/upload/v1494631765/recipeimages/lavender_cake.jpg, thumbimage=https://res.cloudinary.com/lettuce/image/upload/c_thumb,h_324,w_432/v1494631765/recipeimages/lavender_cake.jpg, at=10:00, it=5:00] verbose: RESPONSE from [POST] /parse/classes/Content: { "status": 201, "response": { "objectId": "uIeStSfVP2", "createdAt": "2017-05-16T18:12:25.835Z" }, "location": "https://parseapp.myserver.com/parse/classes/Content/uIeStSfVP2" } status=201, objectId=uIeStSfVP2, createdAt=2017-05-16T18:12:25.835Z, location=https://parseapp.myserver.com/parse/classes/Content/uIeStSfVP2 verbose: REQUEST for [POST] /parse/functions/updaterecipe: { "objectId": "uIeStSfVP2", "plans": [ { "planid": { "objectId": "r0PXyUh9pT", "__type": "Pointer", "className": "Plans" }, "qty": "2", "unit": "lb" }, { "planid": { "objectId": "UJSMwcmiT4", "__type": "Pointer", "className": "Plans" }, "qty": "2", "unit": "lb" }, { "planid": { "objectId": "xMYB6lFzCe", "__type": "Pointer", "className": "Plans" }, "qty": "8", "unit": "oz" }, { "planid": { "objectId": "aFiBsSxf3F", "__type": "Pointer", "className": "Plans" }, "qty": "8", "unit": "oz" }, { "planid": { "objectId": "MpSVZbNAQ6", "__type": "Pointer", "className": "Plans" }, "qty": "8", "unit": "oz" } ] } method=POST, url=/parse/functions/updaterecipe, x-real-ip=173.244.48.93, x-forwarded-for=173.244.48.93, x-nginx-proxy=true, host=parseapp.myserver.com, content-length=536, accept=*/*, x-parse-application-id=RymBj0w6s7QMgq3asP63GsGAEdOYaW31kDvguyBU, x-parse-client-version=php1.2.2, x-parse-session-token=r:1e6518cf23139185edf1fc321a0dca2d, x-parse-rest-api-key=cYhINt9A2sP1yPyg8vd441uq5MDGQNhQDToSDJoK, content-type=application/json, objectId=uIeStSfVP2, plans=[objectId=r0PXyUh9pT, __type=Pointer, className=Plans, qty=2, unit=lb, objectId=UJSMwcmiT4, __type=Pointer, className=Plans, qty=2, unit=lb, objectId=xMYB6lFzCe, __type=Pointer, className=Plans, qty=8, unit=oz, objectId=aFiBsSxf3F, __type=Pointer, className=Plans, qty=8, unit=oz, objectId=MpSVZbNAQ6, __type=Pointer, className=Plans, qty=8, unit=oz] verbose: REQUEST for [GET] /parse/classes/Content: { "where": { "objectId": "uIeStSfVP2" }, "limit": 1 } method=GET, url=/parse/classes/Content, user-agent=node-XMLHttpRequest, Parse/js1.9.2 (NodeJS 7.6.0), accept=*/*, content-type=text/plain, host=localhost:1337, content-length=231, connection=close, objectId=uIeStSfVP2, limit=1 verbose: RESPONSE from [GET] /parse/classes/Content: { "response": { "results": [ { "objectId": "uIeStSfVP2", "title": "Greasy Brown Goulash", "subheading": "This new dish is all the rage in France right now. Similar to pig slop, the gritty texture and uncommon ingredients really make your mouth cry. Pretty gross.", "drinkParing": "Pinot Grigio", "blocks": [ { "title": "Cook beans and crickets", "block": "In a large stockpot, heat 1 cup kale until boiling and add the spice. Add ¼ lb live crickets and stir well. Cook until mushy and fully dead, about 30 minutes. Add 2 cans of pinto beans and pig’s feet. Bring to a boil.", "bigimage": "https://res.cloudinary.com/lettuce/image/upload/v1494627032/recipeimages/open-mind.jpg", "thumbimage": "https://res.cloudinary.com/lettuce/image/upload/c_thumb,h_324,w_432/v1494627032/recipeimages/open-mind.jpg", "at": "05:00", "it": "15:00" }, { "title": "Cook beans and crickets", "block": "In a large stockpot, heat 1 cup kale until boiling and add the spice. Add ¼ lb live crickets and stir well. Cook until mushy and fully dead, about 30 minutes. Add 2 cans of pinto beans and pig’s feet. Bring to a boil.", "bigimage": "https://res.cloudinary.com/lettuce/image/upload/v1494627914/recipeimages/address.jpg", "thumbimage": "https://res.cloudinary.com/lettuce/image/upload/c_thumb,h_324,w_432/v1494627914/recipeimages/address.jpg", "at": "05:00", "it": "15:00" }, { "title": "Cook beans and crickets", "block": "In a large stockpot, heat 1 cup kale until boiling and add the spice. Add ¼ lb live crickets and stir well. Cook until mushy and fully dead, about 30 minutes. Add 2 cans of pinto beans and pig’s feet. Bring to a boil.", "bigimage": "https://res.cloudinary.com/lettuce/image/upload/v1494631765/recipeimages/lavender_cake.jpg", "thumbimage": "https://res.cloudinary.com/lettuce/image/upload/c_thumb,h_324,w_432/v1494631765/recipeimages/lavender_cake.jpg", "at": "10:00", "it": "5:00" } ], "preptype": "recipe", "cuisineEthnicity": [ "french" ], "cuisineStyle": [ "red meat" ], "restriction": [ "lactose free", "gluten free", "nut free" ], "allergy": [], "cookTime": "45 mins", "preparationTime": "20 mins", "recipeLink": "greasy_goulash", "mainImage": [ "http://i.huffpost.com/gadgets/slideshows/387004/slide_387004_4651346_free.jpg" ], "chefnote": "We like to add a sprinkle of Parmesan cheese right before serving our goulash. And if you're looking for more Content like our Easy One-Pot Goulash, be sure to check out our collection of 10 Easy Goulash Content.\r\nWe suggest that this quick and easy dinner be followed by a quick and decadent dessert!", "dependency": [], "createdAt": "2017-05-16T18:12:25.835Z", "updatedAt": "2017-05-16T18:12:25.835Z" } ] } } results=[objectId=uIeStSfVP2, title=Greasy Brown Goulash, subheading=This new dish is all the rage in France right now. Similar to pig slop, the gritty texture and uncommon ingredients really make your mouth cry. Pretty gross., blocks=[title=Cook beans and crickets, block=In a large stockpot, heat 1 cup kale until boiling and add the spice. Add ¼ lb live crickets and stir well. Cook until mushy and fully dead, about 30 minutes. Add 2 cans of pinto beans and pig’s feet. Bring to a boil., bigimage=https://res.cloudinary.com/lettuce/image/upload/v1494627032/recipeimages/open-mind.jpg, thumbimage=https://res.cloudinary.com/lettuce/image/upload/c_thumb,h_324,w_432/v1494627032/recipeimages/open-mind.jpg, at=05:00, it=15:00, title=Cook beans and crickets, block=In a large stockpot, heat 1 cup kale until boiling and add the spice. Add ¼ lb live crickets and stir well. Cook until mushy and fully dead, about 30 minutes. Add 2 cans of pinto beans and pig’s feet. Bring to a boil., bigimage=https://res.cloudinary.com/lettuce/image/upload/v1494627914/recipeimages/address.jpg, thumbimage=https://res.cloudinary.com/lettuce/image/upload/c_thumb,h_324,w_432/v1494627914/recipeimages/address.jpg, at=05:00, it=15:00, title=Cook beans and crickets, block=In a large stockpot, heat 1 cup kale until boiling and add the spice. Add ¼ lb live crickets and stir well. Cook until mushy and fully dead, about 30 minutes. Add 2 cans of pinto beans and pig’s feet. Bring to a boil., bigimage=https://res.cloudinary.com/lettuce/image/upload/v1494631765/recipeimages/lavender_cake.jpg, thumbimage=https://res.cloudinary.com/lettuce/image/upload/c_thumb,h_324,w_432/v1494631765/recipeimages/lavender_cake.jpg, at=10:00, it=5:00], createdAt=2017-05-16T18:12:25.835Z, updatedAt=2017-05-16T18:12:25.835Z] verbose: REQUEST for [PUT] /parse/classes/Content/uIeStSfVP2: { "planSelection": [ { "objectId": { "objectId": "r0PXyUh9pT", "__type": "Pointer", "className": "Plans" }, "__type": "Pointer", "className": "Plans" }, { "objectId": { "objectId": "UJSMwcmiT4", "__type": "Pointer", "className": "Plans" }, "__type": "Pointer", "className": "Plans" }, { "objectId": { "objectId": "xMYB6lFzCe", "__type": "Pointer", "className": "Plans" }, "__type": "Pointer", "className": "Plans" }, { "objectId": { "objectId": "aFiBsSxf3F", "__type": "Pointer", "className": "Plans" }, "__type": "Pointer", "className": "Plans" }, { "objectId": { "objectId": "MpSVZbNAQ6", "__type": "Pointer", "className": "Plans" }, "__type": "Pointer", "className": "Plans" } ] } method=PUT, url=/parse/classes/Content/uIeStSfVP2, user-agent=node-XMLHttpRequest, Parse/js1.9.2 (NodeJS 7.6.0), accept=*/*, content-type=text/plain, host=localhost:1337, content-length=801, connection=close, planSelection=[objectId=r0PXyUh9pT, __type=Pointer, className=Plans, __type=Pointer, className=Plans, objectId=UJSMwcmiT4, __type=Pointer, className=Plans, __type=Pointer, className=Plans, objectId=xMYB6lFzCe, __type=Pointer, className=Plans, __type=Pointer, className=Plans, objectId=aFiBsSxf3F, __type=Pointer, className=Plans, __type=Pointer, className=Plans, objectId=MpSVZbNAQ6, __type=Pointer, className=Plans, __type=Pointer, className=Plans] verbose: RESPONSE from [PUT] /parse/classes/Content/uIeStSfVP2: { "response": { "updatedAt": "2017-05-16T18:12:27.140Z" } } updatedAt=2017-05-16T18:12:27.140Z info: Ran cloud function updaterecipe for user PPuK0Dk2vf with: Input: {"objectId":"uIeStSfVP2","plans":[{"planid":{"objectId":"r0PXyUh9pT","__type":"Pointer","className":"plans"},"qty":"2","unit":"lb"},{"planid":{"objectId":"UJSMwcmiT4","__type":"Pointer","className":"plans"},"qty":"2","unit":"lb"},{"planid":{"objectId":"xMYB6lFzCe","__type":"Pointer","className":"plans"},"qty":"8","unit":"oz"},{"planid":{"objectId":"aFiBsSxf3F","__type":"Pointer","className":"plans"},"qty":"8","unit":"oz"},{"planid":{"objectId":"MpSVZbNAQ6","__type":"Pointer","className":"plans"},"qty":"8","unit":"oz"}]} Result: {"ok":true,"function":"updaterecipe","data":{"title":"Greasy Brown Goulash","subheading":"This new dish is all the rage in France right now. Similar to pig slop, the gritty texture and uncommon ingredients really make your mouth cry. Pretty gross.","drinkParing":"Pinot Grigio","blocks":[{"title":"Cook beans and crickets","block":"In a large stockpot, heat 1 cup kale until boiling and add the spice. Add ¼ lb live crickets and stir well. Cook until mushy and fully dead, about 30 minutes. Add 2 cans of pinto beans and pig’s feet. Bring to a boil.","bigimage":"https://res.cloudinary.com/lettuce/image/upload/v1494627032/recipeimages/open-mind.jpg","thumbimage":"https://res.cloudinary.com/lettuce/image/upload/c_thumb,h_324,w_432/v1494627032/recipeimages/open-mind.jpg","at":"05:00","it":"15:00"},{"title":"Cook beans and crickets","block":"In a large stockpot, heat 1 cup kale until boiling and add the spice. Add ¼ lb live crickets and stir well. Cook until mushy and fully dead, about 30 minutes. ... (truncated) functionName=updaterecipe, objectId=uIeStSfVP2, plans=[objectId=r0PXyUh9pT, __type=Pointer, className=Plans, qty=2, unit=lb, objectId=UJSMwcmiT4, __type=Pointer, className=Plans, qty=2, unit=lb, objectId=xMYB6lFzCe, __type=Pointer, className=Plans, qty=8, unit=oz, objectId=aFiBsSxf3F, __type=Pointer, className=Plans, qty=8, unit=oz, objectId=MpSVZbNAQ6, __type=Pointer, className=Plans, qty=8, unit=oz], user=PPuK0Dk2vf verbose: RESPONSE from [POST] /parse/functions/updaterecipe: { "response": { "result": { "ok": true, "function": "updaterecipe", "data": { "title": "Greasy Brown Goulash", "subheading": "This new dish is all the rage in France right now. Similar to pig slop, the gritty texture and uncommon ingredients really make your mouth cry. Pretty gross." "blocks": [ { "title": "Cook beans and crickets", "block": "In a large stockpot, heat 1 cup kale until boiling and add the spice. Add ¼ lb live crickets and stir well. Cook until mushy and fully dead, about 30 minutes. Add 2 cans of pinto beans and pig’s feet. Bring to a boil.", "bigimage": "https://res.cloudinary.com/lettuce/image/upload/v1494627032/recipeimages/open-mind.jpg", "thumbimage": "https://res.cloudinary.com/lettuce/image/upload/c_thumb,h_324,w_432/v1494627032/recipeimages/open-mind.jpg", "at": "05:00", "it": "15:00" }, { "title": "Cook beans and crickets", "block": "In a large stockpot, heat 1 cup kale until boiling and add the spice. Add ¼ lb live crickets and stir well. Cook until mushy and fully dead, about 30 minutes. Add 2 cans of pinto beans and pig’s feet. Bring to a boil.", "bigimage": "https://res.cloudinary.com/lettuce/image/upload/v1494627914/recipeimages/address.jpg", "thumbimage": "https://res.cloudinary.com/lettuce/image/upload/c_thumb,h_324,w_432/v1494627914/recipeimages/address.jpg", "at": "05:00", "it": "15:00" }, { "title": "Cook beans and crickets", "block": "In a large stockpot, heat 1 cup kale until boiling and add the spice. Add ¼ lb live crickets and stir well. Cook until mushy and fully dead, about 30 minutes. Add 2 cans of pinto beans and pig’s feet. Bring to a boil.", "bigimage": "https://res.cloudinary.com/lettuce/image/upload/v1494631765/recipeimages/lavender_cake.jpg", "thumbimage": "https://res.cloudinary.com/lettuce/image/upload/c_thumb,h_324,w_432/v1494631765/recipeimages/lavender_cake.jpg", "at": "10:00", "it": "5:00" } ], "createdAt": "2017-05-16T18:12:25.835Z", "updatedAt": "2017-05-16T18:12:27.140Z", "planSelection": [ { "objectId": { "objectId": "r0PXyUh9pT", "__type": "Pointer", "className": "Plans" }, "__type": "Pointer", "className": "Plans" }, { "objectId": { "objectId": "UJSMwcmiT4", "__type": "Pointer", "className": "Plans" }, "__type": "Pointer", "className": "Plans" }, { "objectId": { "objectId": "xMYB6lFzCe", "__type": "Pointer", "className": "Plans" }, "__type": "Pointer", "className": "Plans" }, { "objectId": { "objectId": "aFiBsSxf3F", "__type": "Pointer", "className": "Plans" }, "__type": "Pointer", "className": "Plans" }, { "objectId": { "objectId": "MpSVZbNAQ6", "__type": "Pointer", "className": "Plans" }, "__type": "Pointer", "className": "Plans" } ], "objectId": "uIeStSfVP2", "__type": "Object", "className": "Content" } } } } ok=true, function=updaterecipe, title=Greasy Brown Goulash, subheading=This new dish is all the rage in France right now. Similar to pig slop, the gritty texture and uncommon ingredients really make your mouth cry. Pretty gross., drinkParing=Pinot Grigio, blocks=[title=Cook beans and crickets, block=In a large stockpot, heat 1 cup kale until boiling and add the spice. Add ¼ lb live crickets and stir well. Cook until mushy and fully dead, about 30 minutes. Add 2 cans of pinto beans and pig’s feet. Bring to a boil., bigimage=https://res.cloudinary.com/lettuce/image/upload/v1494627032/recipeimages/open-mind.jpg, thumbimage=https://res.cloudinary.com/lettuce/image/upload/c_thumb,h_324,w_432/v1494627032/recipeimages/open-mind.jpg, at=05:00, it=15:00, title=Cook beans and crickets, block=In a large stockpot, heat 1 cup kale until boiling and add the spice. Add ¼ lb live crickets and stir well. Cook until mushy and fully dead, about 30 minutes. Add 2 cans of pinto beans and pig’s feet. Bring to a boil., bigimage=https://res.cloudinary.com/lettuce/image/upload/v1494627914/recipeimages/address.jpg, thumbimage=https://res.cloudinary.com/lettuce/image/upload/c_thumb,h_324,w_432/v1494627914/recipeimages/address.jpg, at=05:00, it=15:00, title=Cook beans and crickets, block=In a large stockpot, heat 1 cup kale until boiling and add the spice. Add ¼ lb live crickets and stir well. Cook until mushy and fully dead, about 30 minutes. Add 2 cans of pinto beans and pig’s feet. Bring to a boil., bigimage=https://res.cloudinary.com/lettuce/image/upload/v1494631765/recipeimages/lavender_cake.jpg, thumbimage=https://res.cloudinary.com/lettuce/image/upload/c_thumb,h_324,w_432/v1494631765/recipeimages/lavender_cake.jpg, at=10:00, it=5:00], createdAt=2017-05-16T18:12:25.835Z, updatedAt=2017-05-16T18:12:27.140Z, planSelection=[objectId=r0PXyUh9pT, __type=Pointer, className=Plans, __type=Pointer, className=Plans, objectId=UJSMwcmiT4, __type=Pointer, className=Plans, __type=Pointer, className=Plans, objectId=xMYB6lFzCe, __type=Pointer, className=Plans, __type=Pointer, className=Plans, objectId=aFiBsSxf3F, __type=Pointer, className=Plans, __type=Pointer, className=Plans, objectId=MpSVZbNAQ6, __type=Pointer, className=Plans, __type=Pointer, className=Plans], objectId=uIeStSfVP2, __type=Object, className=Content

@flovilmart
Copy link
Contributor

flovilmart commented May 16, 2017

and what object is supposedly saves as a pointers array? I don't see any pointer arrays, but plain old objects. And nothing related to the code snipped you provided.

@nirvana74v
Copy link
Author

Sorry for the wrong log, I've updated the previous log

@flovilmart
Copy link
Contributor

This is not an array of pointers, if I loot at a single element:

{ "planid": { "objectId": "r0PXyUh9pT", "__type": "Pointer", "className": "Plans" }, "qty": "2", "unit": "lb" }

Also, it saves just fine.

@nirvana74v
Copy link
Author

any extra information along with pointer like the one posted above makes it save as
[{"planid":{"objectId":"r0PXyUh9pT"},"qty":"2","unit":"lb"}]
you can check it,

Create an array field
create a pointer object for class
add that as JSON object noted above and save
, "__type": "Pointer", "className": "Plans"
will get removed

@flovilmart
Copy link
Contributor

is it an issue with the JS SDK or parse-server? AFAICT this seems to be on parse-server.

Can you provide the verbose log for a fetch of that object?

@nirvana74v
Copy link
Author

I think the issue seem to be with parse server, as I am not able to save the pointer details along with any other meta information even while saving from PHP. Should I post this issue under parse-server?

@flovilmart
Copy link
Contributor

Yes that would be better, please also fill completely the issue template from the parse-server issue report.

@nirvana74v
Copy link
Author

Sure will do .. thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants