EDIT: I determined that the following is a result of the Graph.cool permission shown below, intended to let users only be able to modify their own profile. It works as expected for all fields with the exception of Portrait and artistInfluences. is there something special about these fields that thi permission would interfere with?
No other permissions have been implemented on graph.cool yet. I have removed this one for the time being.
Permission causing problem:
(With the above permission implemented)
There is simply no response (success or failure) to the UpdateUser mutation.
My console log shows a correct user Id and file Id when
The image file is created correctly and shows up in the graphcool data, showing the correct user uploaded th file. but fails to get associated as the portraitUrl via the user mutation.
When comparing it to the functioning album artwork upload/ UpdateProject mutations, I have NO idea why this isn't working. Any tips on where to look?
This one is pretty concerning for me as all of the other user updates work fine and utilize the same mutation ...
EDIT: I determined that the following is a result of the Graph.cool permission shown below, intended to let users only be able to modify their own profile. It works as expected for all fields with the exception of Portrait and artistInfluences. is there something special about these fields that thi permission would interfere with?
No other permissions have been implemented on graph.cool yet. I have removed this one for the time being.
Permission causing problem:
(With the above permission implemented) There is simply no response (success or failure) to the UpdateUser mutation. My console log shows a correct user Id and file Id when The image file is created correctly and shows up in the graphcool data, showing the correct user uploaded th file. but fails to get associated as the portraitUrl via the user mutation.
When comparing it to the functioning album artwork upload/ UpdateProject mutations, I have NO idea why this isn't working. Any tips on where to look? This one is pretty concerning for me as all of the other user updates work fine and utilize the same mutation ...
this is all available in the test0 branch
Profile.js
UpdateUser.js
@carlpeaslee