(ctx context.Context, v interface{})
| 8587 | } |
| 8588 | |
| 8589 | func (ec *executionContext) unmarshalNID2string(ctx context.Context, v interface{}) (string, error) { |
| 8590 | res, err := graphql.UnmarshalID(v) |
| 8591 | return res, graphql.ErrorOnPath(ctx, err) |
| 8592 | } |
| 8593 | |
| 8594 | func (ec *executionContext) marshalNID2string(ctx context.Context, sel ast.SelectionSet, v string) graphql.Marshaler { |
| 8595 | res := graphql.MarshalID(v) |
no outgoing calls
no test coverage detected