MCPcopy
hub / github.com/abhi1693/openclaw-mission-control / all

Method all

backend/app/api/queryset.py:54–56  ·  view source on GitHub ↗

Fetch all rows for the current queryset.

(self, session: AsyncSession)

Source from the content-addressed store, hash-verified

52 return APIQuerySet(self.queryset.offset(value))
53
54 async def all(self, session: AsyncSession) -> list[ModelT]:
55 """Fetch all rows for the current queryset."""
56 return await self.queryset.all(session)
57
58 async def first(self, session: AsyncSession) -> ModelT | None:
59 """Fetch the first row for the current queryset, if present."""

Callers 15

get_my_membershipFunction · 0.45
get_org_memberFunction · 0.45
update_member_accessFunction · 0.45
remove_org_memberFunction · 0.45
create_org_inviteFunction · 0.45
list_marketplace_skillsFunction · 0.45
delete_marketplace_skillFunction · 0.45
list_skill_packsFunction · 0.45
sync_skill_packFunction · 0.45
list_tagsFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected