pip install -r requirements.txt
python manage.py migrate
python manage.py runserver
mutation MyMutation {
createTodo(input:{clientMutationId:"a", title:"Test Todo", description:"Testing"}) {
todo {
id
title
description
}
ok
}
}
{
todoList: allTodos {
totalCount
edges {
node {
title
description
}
}
}
}