Hey, Im looking into using nest with apollo and prisma to create a GraphQL. I am using the generated prisma types to expose args for the user. I have a relationship similar to User -> [Client] (1:n). The generated types (user-create.input) exposes create, connect and createOrConnect input fields. Whats the best way for limiting the input type to only showing create, and not connect or createOrConnect? Do I just manually make a new type, or is there some good way of getting the type generated or keeping it in line with my prisma schema