Create a row with a pointer to a user
Hello,
I have a collection called categories that has two non-default columns: category_name and user_id. In my app, I'd like to let users create categories that only they can see. I have login working and I am storing both the sessionToken and userID in local variables. When I try to create a new row from the app, I get this error:
"Pointer column value of field 'user_id' must be JSON object but has 'class java.lang.String'"
How am I supposed to pass the userID back to the service? Once it is set, I would be able to build the queries based on the logged in user.
Thanks