Profile is the resolver for the profile field.
(ctx context.Context)
| 204 | |
| 205 | // Profile is the resolver for the profile field. |
| 206 | func (r *queryResolver) Profile(ctx context.Context) (*model.User, error) { |
| 207 | return r.GraphQLProvider.Profile(ctx) |
| 208 | } |
| 209 | |
| 210 | // ValidateJwtToken is the resolver for the validate_jwt_token field. |
| 211 | func (r *queryResolver) ValidateJwtToken(ctx context.Context, params model.ValidateJWTTokenRequest) (*model.ValidateJWTTokenResponse, error) { |