AdminMeta delegates to the transport-agnostic service layer. Resolver is a thin transport adapter — same pattern as Meta. Permissions: authorizer:admin
(ctx context.Context)
| 13 | // |
| 14 | // Permissions: authorizer:admin |
| 15 | func (g *graphqlProvider) AdminMeta(ctx context.Context) (*model.AdminMeta, error) { |
| 16 | gc, _ := utils.GinContextFromContext(ctx) |
| 17 | res, _, err := g.adminService().AdminMeta(ctx, service.MetaFromGin(gc)) |
| 18 | return res, err |
| 19 | } |
nothing calls this directly
no test coverage detected