I faced one problem. My tables have columns where one table is related to another, and when I try to get data from those columns, no related block information is provided. What method can be used to get such data?
block = client.get_block(notion_table_link)
rows = [row for row in block.collection.get_rows()]
res = getattr(row, some_attribute_from_my_table)