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
I'm hosting Parse server on Heroku. My issue is when I'm removing an objectId from array of strings. I have a cart column (array) on JobFeed class. I query the following:
Can you please add all the info specified in the template? This is necessary for people to be able to understand and reproduce the issue being reported.
Hi,
I'm hosting Parse server on Heroku. My issue is when I'm removing an objectId from array of strings. I have a cart column (array) on JobFeed class. I query the following:
$http( {
method: 'PUT',
url: 'https://myserver/1/classes/JobFeed/' + jobId,
data: {
cart: {
__op: 'Remove',
objects: [ service.objectId]
}
}
});
It returns JobFeed with the objctId still on the array.
The text was updated successfully, but these errors were encountered: