I have read the documentation on pointers ( http://devcenter.appery.io/documentat... ) but it is still unclear to me how to use them specifically in my app. I have two collections, one is Users and the other is Cars. I want to assign an id (from the Users collection) to a user_id in the Cars collection. Can anyone tell me how to specifically do this? Also, when I do assign the id, will I be able to use this as a foreign key? For example, can I do a query on cars collection that says, give me a list of all cars with specific user id 123456?
If possible, can you please explain to me the steps in this format
1) first do this
2) then do this
3) finally do this
etc...