API Docs

Move Record to List

Learn how to move a record to a different list.

In Blue, every record has to be associated with one list. To move a record to a different list, you can use the following mutation:

mutation MoveTodo {
  moveTodo(
    input: {
      todoId: "todo-id"
      todoListId: "todo-list-id"
    }
  )
}