In the typescript/graphql example, if you want to return a more complex type, such as: In https://github.com/prisma/prisma-examples/blob/master/typescript/graphql/src/schema.graphql ``` publish(id: ID!): PublishPayload type PublishPayload { post: Post! otherInformation: String! } ``` You get an error when running graphqlgen "Some types from your application schema have model definitions that are not defined yet" What is the recommended way to do this? Must be an easier way than maintaining a separate .ts types definition for all these types?