Netflix / dgs-codegen

Apache License 2.0
182 stars 99 forks source link

generating Java types failed with $ in graphql schema comment on interface #694

Closed zlishaojiez closed 2 months ago

zlishaojiez commented 4 months ago

With code gen 6.2.1, java 17, springboot 3.1.12 I got the issue "Cause: index 1 for '$t' not in range (received 0 arguments)" when the comment with "$" in the interface schema

type Query { people: [Person] }

interface Person { """ $test """ name: String }