You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want a page that will show all the related information of a Character but only up to a certain point in the story.
Motivation
There are plenty of spoilers in the wiki and the chats. If there is a way to check only the relevant information that will not spoil you, I think that would be great.
A ChapterInfo will be connected to a Character and Chapter, and that will allow us to view a character's information from the beginning of the story to a specific chapter:
// Sample query to get all the available information of
// a Character named "Erin Solstice" before WebVolume 2.
// (WebVolume 1 comprises of Chapters #1 to #65).
MATCH
(c:Character)-[:NEW_INFO]->(ci:ChapterInfo)-[:FROM_CHAPTER]->(ch:Chapter)
WHERE
c.name = "Erin Solstice"
AND ch.webNovelOrder < 66
AND ch.metaShow = true
RETURN info
Description
I want a page that will show all the related information of a Character but only up to a certain point in the story.
Motivation
There are plenty of spoilers in the wiki and the chats. If there is a way to check only the relevant information that will not spoil you, I think that would be great.
Suggested Implementation
Schema v0.1.0:
Schema v0.2.0:
A
ChapterInfowill be connected to aCharacterandChapter, and that will allow us to view a character's information from the beginning of the story to a specific chapter:All the data will be saved in https://github.com/wandering-inndex/seed-data/, as plain text files. And a workflow will process the said files and update the Neo4j database.
Alternate Implementations
Create a time-based wiki platform. But that will be a nightmare to implement, as new data can come in anytime.