```type User { id: ID! } extend type Mutation...
# prisma-whats-new
s
Copy code
type User {
    id: ID!
}

extend type Mutation {
    updateUser(
        id: ID!
        organizationId: ID!
        firstName: String!
        lastName: String!
        roles: [String!]!
    ): User
}
m
Usually you have a corresponding InType? could it be that?