When the schema GraphQL has a key with a "type" name, the line is not taken into conversion.
type Test {
id: ID!
name: String
type: TestType
}
Then the conversion will give this
export const Test = {
id: number
name: string | null
}
Fixing the bug on the next update
When the schema GraphQL has a key with a "type" name, the line is not taken into conversion.
Then the conversion will give this
Fixing the bug on the next update