Did you login?
Can you enable “reload” checkbox and retry?
What object you are updating? Did you debug(print values) or check in database if needed user were updated?
You’re making good progress, but there are a few problems with the logic you shared:
The following logic will save an incremented value, however the value in Page Data will remain the same - you need to add additional logic to increment the value stored in Page Data
In the following logic you will fetch 10 records from the Users table and store them all in the Points property in Page Data. This is not what you want… You need to retrieve a specific record from Users - the record that corresponds to the currently logged in user. Keep in mind that the Load Table objects block always returns a collection of objects (even if it is a collection of one). So you need to fetch one specific record/object add logic to extract that object from the collection. Then you need to get the Points property from that specific object:
I wanted to reach out as part of the Pocket Perks development team regarding the page size settings for retrieving items from the “Users” table. It seems that when I set the page size to 10, it returns only 11 items, and I’d like to retrieve all entries. Here is the block:
When you set it to 10, it should return up to 10. The maximum value supported in the Cloud version is 100; you can use paging to retrieve more. Here’s a doc on paging:
@Tomdabom , also, please create a new topic for every new question. It will help keep the conversations on topic, and others can benefit from finding answers faster.
Thanks for the clarification! I appreciate the link to the documentation on paging. I’ll take a closer look at that to better understand how to retrieve all the items I need.
If I have any further questions, I’ll be sure to create a new topic as suggested.
I just wanted to say a big thank you for your help with updating the User table in Backendless. What we’re doing right now would not have been possible without your expertise and support!
Hi Mark,
I Just wanted to say thank you,
I went on holiday and came back and the sultion jst clicked for me.
As for the real time database part, the app seems to be working fine without it.