DjangoCreateMutationΒΆ

Will create a new mutation which will create a new object of the supplied model.

Mutation input arguments:

Argument Type
input Object!

Meta fields:

mutation {
    createUser(input: {name: "John Doe", address: "Downing Street 10"}){
        user{
            id
            name
            address
        }
    }
}