In Parse I've two classes with a many-to-many relation, for example items and categories. I've created in the class items a relation with categories and all work fine with querying and updating. My problem is when I need to change the items relation with linked categories.
As far as I know, if I need to change the relation of items with categories, I first need to delete all categories relation with RemoveRelation and later re-add them with AddRelation. To do that I need to fetch all categories objectId from my item.
How can I do that with a REST API call?