app-sre / qenerate

Code Generator for GraphQL Query and Fragment Data Classes
Apache License 2.0
10 stars 7 forks source link

APPSRE-5972 properly handle nullable #34

Closed fishi0x01 closed 2 years ago

fishi0x01 commented 2 years ago

Properly handle nulls. By default, everything is nullable.

GraphQL -> Python [String!]! -> list[str] [String] -> Optional[list[Optional[str]]]

If we want to reduce null, then we must apply more NonNull types in our schema.