MCPcopy Create free account
hub / github.com/piccolo-orm/piccolo / run

Method run

piccolo/query/methods/select.py:141–147  ·  view source on GitHub ↗
(
        self,
        node: Optional[str] = None,
        in_pool: bool = True,
    )

Source from the content-addressed store, hash-verified

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
150class Select(Query[TableInstance, list[dict[str, Any]]]):

Callers

nothing calls this directly

Calls 2

dump_jsonFunction · 0.90
runMethod · 0.45

Tested by

no test coverage detected