(err error, f Field)
| 148 | } |
| 149 | |
| 150 | func externalRequestError(err error, f Field) *x.GqlError { |
| 151 | return f.GqlErrorf(nil, "Evaluation of custom field failed because external request"+ |
| 152 | " returned an error: %s for field: %s within type: %s.", err, f.Name(), f.GetObjectName()) |
| 153 | } |
| 154 | |
| 155 | func GetBodyForLambda(ctx context.Context, field Field, parents, |
| 156 | args interface{}) map[string]interface{} { |
no test coverage detected
searching dependent graphs…