(ctx context.Context, sel ast.SelectionSet, v string)
| 9051 | } |
| 9052 | |
| 9053 | func (ec *executionContext) marshalNString2string(ctx context.Context, sel ast.SelectionSet, v string) graphql.Marshaler { |
| 9054 | res := graphql.MarshalString(v) |
| 9055 | if res == graphql.Null { |
| 9056 | if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) { |
| 9057 | ec.Errorf(ctx, "the requested element is null which the schema does not allow") |
| 9058 | } |
| 9059 | } |
| 9060 | return res |
| 9061 | } |
| 9062 | |
| 9063 | func (ec *executionContext) marshalN__Directive2githubᚗcomᚋ99designsᚋgqlgenᚋgraphqlᚋintrospectionᚐDirective(ctx context.Context, sel ast.SelectionSet, v introspection.Directive) graphql.Marshaler { |
| 9064 | return ec.___Directive(ctx, sel, &v) |
no outgoing calls
no test coverage detected