Add people node query support

Signed-off-by: gearnode <bryan@frimin.fr>
This commit is contained in:
gearnode
2025-01-31 08:13:02 -08:00
parent 14380aa635
commit 5291cdb3db
3 changed files with 67 additions and 0 deletions

View File

@@ -110,6 +110,13 @@ func (r *queryResolver) Node(ctx context.Context, id gid.GID) (types.Node, error
}
return types.NewOrganization(organization), nil
case coredata.PeopleEntityType:
people, err := r.svc.GetPeople(ctx, id)
if err != nil {
return nil, err
}
return types.NewPeople(people), nil
default:
}

View File

@@ -57,6 +57,46 @@ func (p *People) scan(r pgx.Row) error {
)
}
func (p *People) LoadByID(
ctx context.Context,
conn pg.Conn,
scope *Scope,
peopleID gid.GID,
) error {
q := `
SELECT
id,
organization_id,
full_name,
primary_email_address,
additional_email_addresses,
created_at,
updated_at
FROM
peoples
WHERE
%s
AND id = @people_id
LIMIT 1;
`
q = fmt.Sprintf(q, scope.SQLFragment())
args := pgx.NamedArgs{"people_id": peopleID}
maps.Copy(args, scope.SQLArguments())
r := conn.QueryRow(ctx, q, args)
p2 := People{}
if err := p2.scan(r); err != nil {
return err
}
*p = p2
return nil
}
func (p *Peoples) LoadByOrganizationID(
ctx context.Context,
conn pg.Conn,

View File

@@ -69,6 +69,26 @@ func (s Service) GetOrganization(
return organization, nil
}
func (s Service) GetPeople(
ctx context.Context,
peopleID gid.GID,
) (*coredata.People, error) {
people := &coredata.People{}
err := s.pg.WithConn(
ctx,
func(conn pg.Conn) error {
return people.LoadByID(ctx, conn, s.scope, peopleID)
},
)
if err != nil {
return nil, err
}
return people, nil
}
func (s Service) ListOrganizationFrameworks(
ctx context.Context,
organizationID gid.GID,