()
| 50 | ast, |
| 51 | visitWithTypeInfo(typeInfo, { |
| 52 | Field() { |
| 53 | const field = typeInfo.getFieldDef() |
| 54 | if (field) { |
| 55 | const namedType = getNamedType(field.type) |
| 56 | const scalar = isScalarType(namedType) |
| 57 | if (!scalar) { |
| 58 | types.add(namedType.name) |
| 59 | } |
| 60 | } |
| 61 | }, |
| 62 | }), |
| 63 | ) |
| 64 |
nothing calls this directly
no outgoing calls
no test coverage detected