You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I ran across a case where in custom_tables module there was a table called Price and a table called price. This works with the API becuase it can create a GraphQL schema where both these fields exist as the schema is case sensitive. However when using graphql-codegen it makes the first letter of every type it generated upper-case (this is the convention for type names). So then we get two type Price and compile errors.
The text was updated successfully, but these errors were encountered:
I ran across a case where in custom_tables module there was a table called
Price
and a table calledprice
. This works with the API becuase it can create a GraphQL schema where both these fields exist as the schema is case sensitive. However when using graphql-codegen it makes the first letter of every type it generated upper-case (this is the convention for type names). So then we get twotype Price
and compile errors.The text was updated successfully, but these errors were encountered: