nodes = client.read_nodes(["louvain", "pageRank"], labels=["User"]) # if you know the resulting dataset is small, you can eagerly consume into a # Python list result = list(nodes) # the `result` is now a list of PyArrow RecordBatch objects print(result)...