currently, we have ```graphql type article { id Int title String } ``` If `id` and `title` have been declared `NOT NULL`, the types that are generated should be: ```graphql type article { id Int! title String! } ```