This is for static typing purposes.
| 134 | |
| 135 | |
| 136 | class SelectJSON(Proxy["Select", str]): |
| 137 | """ |
| 138 | This is for static typing purposes. |
| 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]]]): |