addTodo()

in todo/js/mutations/AddTodoMutation.js [9:21]


    addTodo(input: $input) {
      todoEdge @appendEdge(connections: $connections) {
        node {
          complete
          id
          text
        }
      }
      user {
        id
        totalCount
      }
    }