Closed fishi0x01 closed 2 years ago
Properly handle nulls. By default, everything is nullable.
GraphQL -> Python [String!]! -> list[str] [String] -> Optional[list[Optional[str]]]
[String!]!
list[str]
[String]
Optional[list[Optional[str]]]
If we want to reduce null, then we must apply more NonNull types in our schema.
NonNull
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.