(
self,
node: Optional[str] = None,
in_pool: bool = True,
)
| 139 | """ |
| 140 | |
| 141 | async def run( |
| 142 | self, |
| 143 | node: Optional[str] = None, |
| 144 | in_pool: bool = True, |
| 145 | ) -> str: |
| 146 | rows = await self.query.run(node=node, in_pool=in_pool) |
| 147 | return dump_json(rows) |
| 148 | |
| 149 | |
| 150 | class Select(Query[TableInstance, list[dict[str, Any]]]): |