(ctx context.Context, v interface{})
| 9046 | } |
| 9047 | |
| 9048 | func (ec *executionContext) unmarshalNString2string(ctx context.Context, v interface{}) (string, error) { |
| 9049 | res, err := graphql.UnmarshalString(v) |
| 9050 | return res, graphql.ErrorOnPath(ctx, err) |
| 9051 | } |
| 9052 | |
| 9053 | func (ec *executionContext) marshalNString2string(ctx context.Context, sel ast.SelectionSet, v string) graphql.Marshaler { |
| 9054 | res := graphql.MarshalString(v) |
no outgoing calls
no test coverage detected