wip: currently rewriting the project as a full stack application
tangled.org/kacaii.dev/sigo
gleam
1-- Retrieves detailed information about fellow brigade members
2-- for a given user, including their names and role details.
3select
4 u.id,
5 u.full_name,
6 u.user_role,
7 crew.brigade_id
8from public.query_crew_members($1) as crew
9inner join public.user_account as u
10 on crew.member_id = u.id;