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

Method first

backend/app/api/queryset.py:58–60  ·  view source on GitHub ↗

Fetch the first row for the current queryset, if present.

(self, session: AsyncSession)

Source from the content-addressed store, hash-verified

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."""
60 return await self.queryset.first(session)
61
62 async def first_or_404(
63 self,

Callers 15

first_or_404Method · 0.95
_require_org_memberFunction · 0.45
_require_org_inviteFunction · 0.45
create_organizationFunction · 0.45
list_my_organizationsFunction · 0.45
set_active_orgFunction · 0.45
get_my_membershipFunction · 0.45
get_org_memberFunction · 0.45
update_org_memberFunction · 0.45
update_member_accessFunction · 0.45
remove_org_memberFunction · 0.45
create_org_inviteFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected