@AJOY_DAS Youtube video , I wonna tell you all youtube video were uploaded after release date of extension and then after second update no video were uploader
Many youtube told to keep page to 0 and size to 0 but after second update it will not work
Row , all rows method have same trick like column one trick only
Many users were getting problems on fetching rows more than 200. Before this update, If you have tried to fetch more than 200 rows from single page, then it triggers OnError event with Invalid page as error message. However, I have explained more with the solution for version 3 here.
Since, many users were not understanding the concept, So, I wrapped this concept within V3.1 of this extension so that user can easily manage his/her workflow. Now, If size is more than 200 then it will automatically fetch all the rows available in your particular baserow database.
So if you wanted to fetch all the rows then you can give max size more than 200.
Source code is already updated at GitHub at here.
You can find changes in codes from GitHub Commits
Yesterday, I have launched V3.1 of this extension. That version was launched to help users to be able to fetches all the rows of particular table.
Let assume I have a table with 1000 rows, and I need to fetches first 400 rows.
If I used V3.1 and give size 400, even then it would have fetched all the rows and give you 1000 rows.
This version of the extension will fix it. Now, It works similar like max value of Airtable database.
Now, If I assign size parameter to 400, It will only fetch 400 rows. So, you can fetch any particular amount of rows data you wanted.
Why I didnāt removed page parameter in this version ?
Now, If I can fetch any max amount of rows then what is the need of page parameter in GetColumn method and GetAllRows method ?
Yeah, If you are not experimenting with databases & you are a Airtable user and you are migrating to Baserow then you can simply set page parameter to 1 and use size as maxSize like Airtable.
But page can be very important in some scenarios & can be used to experiment . For example, If have 1000 rows but I only need to fetch value from 200 to 400 then I can assign page as 2 and size as 200.
Yes, but I would like to know how to see the ID of the line that is on the website. In the code I can only know the ID in the variable not the real one that is on the website. I donāt know if you understood how I explained it?
@oseamiya already explained how it works. But as you said in this reply
You can get the value by using get cell block. There you can set the ID to the ID you get in blocks. Otherwise if you want to fetch a complete row then use Get Row block and use The ID.
Sure, Wait some couple of minutes. I am doing some experiments for a patch in the extension. That will help you directly to get list of rowIds from baserow extension directly. No need to worries about response and all
(edited)
Iāve sent test extension to @AJOY_DAS & @Diego_Zeppe . You can find change in two blocks GotColumn & GotAllRows.