When an update is made to sentences in wanikani, can it unburn an item? I thought I had burned 文字?
but I have this in my burn deck in Anki already. but it’s showing as un burned in wanikani.
Thanks
When an update is made to sentences in wanikani, can it unburn an item? I thought I had burned 文字?
but I have this in my burn deck in Anki already. but it’s showing as un burned in wanikani.
Thanks
What does the vocab page say? WaniKani / Vocabulary / 文字
Is the item now in “Enlightened” or “Apprentice”?
Try tagging @Viet for such questions.
Could it be… Undead turtles?!

No, an update to a subject does not unburn the item.
Was able to get on a computer and found some time to look into this.
Use the following JS to pull your reviews for the vocabulary (redacted api key):
var apiToken = 'xxx';
var apiEndpoint = 'https://api.wanikani.com/v2/reviews/?subject_ids=2659';
var requestHeaders =
new Headers({
Authorization: 'Bearer ' + apiToken,
});
var apiEndpoint =
new Request(apiEndpoint, {
method: 'GET',
headers: requestHeaders
});
fetch(apiEndpoint).then(
response => response.json()
).then(
responseBody =>
console.log(
JSON.stringify(
responseBody.data
.sort((x,y) => x.data.created_at.localeCompare(y.data.created_at))
.map((x) => ({ reviewed_at: x.data.created_at, starting_srs: x.data.starting_srs_stage_name, ending_srs: x.data.ending_srs_stage_name }))
)
)
);
And the manipulated response
[
{
"reviewed_at": "2017-12-19T19:19:17.998827Z",
"starting_srs": "Apprentice I",
"ending_srs": "Apprentice I"
},
{
"reviewed_at": "2017-12-19T23:55:18.748975Z",
"starting_srs": "Apprentice I",
"ending_srs": "Apprentice I"
},
{
"reviewed_at": "2017-12-20T17:22:43.001537Z",
"starting_srs": "Apprentice I",
"ending_srs": "Apprentice II"
},
{
"reviewed_at": "2017-12-21T01:54:12.039508Z",
"starting_srs": "Apprentice II",
"ending_srs": "Apprentice III"
},
{
"reviewed_at": "2017-12-22T00:27:01.855531Z",
"starting_srs": "Apprentice III",
"ending_srs": "Apprentice II"
},
{
"reviewed_at": "2017-12-22T13:17:17.455424Z",
"starting_srs": "Apprentice II",
"ending_srs": "Apprentice III"
},
{
"reviewed_at": "2017-12-23T13:42:51.883489Z",
"starting_srs": "Apprentice III",
"ending_srs": "Apprentice IV"
},
{
"reviewed_at": "2017-12-25T13:23:28.637931Z",
"starting_srs": "Apprentice IV",
"ending_srs": "Guru I"
},
{
"reviewed_at": "2018-01-01T19:20:47.113446Z",
"starting_srs": "Guru I",
"ending_srs": "Apprentice III"
},
{
"reviewed_at": "2018-01-02T18:20:05.835100Z",
"starting_srs": "Apprentice III",
"ending_srs": "Apprentice II"
},
{
"reviewed_at": "2018-01-03T04:17:14.223464Z",
"starting_srs": "Apprentice II",
"ending_srs": "Apprentice III"
},
{
"reviewed_at": "2018-01-04T04:54:17.720672Z",
"starting_srs": "Apprentice III",
"ending_srs": "Apprentice IV"
},
{
"reviewed_at": "2018-01-06T09:13:56.898700Z",
"starting_srs": "Apprentice IV",
"ending_srs": "Guru I"
},
{
"reviewed_at": "2018-01-13T08:32:21.134001Z",
"starting_srs": "Guru I",
"ending_srs": "Guru II"
},
{
"reviewed_at": "2018-01-27T14:10:39.105116Z",
"starting_srs": "Guru II",
"ending_srs": "Master"
},
{
"reviewed_at": "2018-02-27T08:15:54.771731Z",
"starting_srs": "Master",
"ending_srs": "Enlightened"
},
{
"reviewed_at": "2018-06-27T07:31:12.615019Z",
"starting_srs": "Enlightened",
"ending_srs": "Guru II"
},
{
"reviewed_at": "2018-07-14T10:02:44.874367Z",
"starting_srs": "Guru II",
"ending_srs": "Apprentice IV"
},
{
"reviewed_at": "2018-07-16T10:01:43.281463Z",
"starting_srs": "Apprentice IV",
"ending_srs": "Apprentice III"
},
{
"reviewed_at": "2018-07-17T12:39:56.491332Z",
"starting_srs": "Apprentice III",
"ending_srs": "Apprentice II"
},
{
"reviewed_at": "2018-07-18T11:23:47.939583Z",
"starting_srs": "Apprentice II",
"ending_srs": "Apprentice III"
},
{
"reviewed_at": "2018-07-19T11:38:17.750104Z",
"starting_srs": "Apprentice III",
"ending_srs": "Apprentice IV"
},
{
"reviewed_at": "2018-07-21T19:40:34.700397Z",
"starting_srs": "Apprentice IV",
"ending_srs": "Guru I"
},
{
"reviewed_at": "2018-07-28T18:46:53.199392Z",
"starting_srs": "Guru I",
"ending_srs": "Guru II"
},
{
"reviewed_at": "2018-08-11T19:38:03.848677Z",
"starting_srs": "Guru II",
"ending_srs": "Apprentice IV"
},
{
"reviewed_at": "2018-08-13T18:58:02.980640Z",
"starting_srs": "Apprentice IV",
"ending_srs": "Apprentice III"
},
{
"reviewed_at": "2018-08-14T22:50:21.842423Z",
"starting_srs": "Apprentice III",
"ending_srs": "Apprentice II"
},
{
"reviewed_at": "2018-08-15T09:33:45.554992Z",
"starting_srs": "Apprentice II",
"ending_srs": "Apprentice III"
},
{
"reviewed_at": "2018-08-16T08:13:43.156491Z",
"starting_srs": "Apprentice III",
"ending_srs": "Apprentice IV"
},
{
"reviewed_at": "2018-08-18T14:37:26.864094Z",
"starting_srs": "Apprentice IV",
"ending_srs": "Guru I"
},
{
"reviewed_at": "2018-08-25T13:44:39.677812Z",
"starting_srs": "Guru I",
"ending_srs": "Apprentice III"
},
{
"reviewed_at": "2018-08-27T08:36:48.790630Z",
"starting_srs": "Apprentice III",
"ending_srs": "Apprentice II"
},
{
"reviewed_at": "2018-08-28T06:20:33.998049Z",
"starting_srs": "Apprentice II",
"ending_srs": "Apprentice I"
},
{
"reviewed_at": "2018-08-28T12:17:14.229171Z",
"starting_srs": "Apprentice I",
"ending_srs": "Apprentice II"
},
{
"reviewed_at": "2018-08-29T06:15:33.831709Z",
"starting_srs": "Apprentice II",
"ending_srs": "Apprentice III"
},
{
"reviewed_at": "2018-08-30T05:19:26.081962Z",
"starting_srs": "Apprentice III",
"ending_srs": "Apprentice IV"
},
{
"reviewed_at": "2018-09-01T07:45:26.247393Z",
"starting_srs": "Apprentice IV",
"ending_srs": "Guru I"
},
{
"reviewed_at": "2018-09-08T08:34:53.011898Z",
"starting_srs": "Guru I",
"ending_srs": "Guru II"
},
{
"reviewed_at": "2018-09-22T10:06:21.356690Z",
"starting_srs": "Guru II",
"ending_srs": "Apprentice IV"
},
{
"reviewed_at": "2018-09-24T09:59:06.555796Z",
"starting_srs": "Apprentice IV",
"ending_srs": "Apprentice III"
}
]
Looks like the item never made it to burned…
What a roller coaster!
Thank you
I must of made a mistake when in putting the kanji.
Did you make a 誤字 with 文字? ![]()
I copied and pasted it from the Wanikani explorer. I was pretty sure I checked burned items and filtered it by burned date. but I must of messed up somehow.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.