Here is our early work on developing a graph data model for the catalogue.
You can find our visualization of the graph data model below.
Unfortunately, we could not get the edge labels to render this time. We will fix it in a later version.
I made an example graph, based on the graph data model, in Neo4j.
I included the following entities:
Person,
Role,
Works,
Identifier,
Keyword,
Collection, and
MediaSource.
I included the following relationships:
HAS_AUTHORED,
LOCATED_IN,
HAS_PUBLISHED_IN,
AUTHORED_WITH,
HAS_IDENTIFIER,
HAS_KEYWORD,
HAS_LANGUAGE,
HAS_EVENT,
REFERENCES_MARKER,
HAS_USED_MARKER,
CURATED_IN, and
HAS_ROLE.
The data for the example graph was collected from:
DAO Times,
Reboot,
Rehash: A Web3 Podcast,
Green Pill Podcast, and
Rest of World.
You can find more information on the sources above in the table below.
For the next update, I will probably add Language and Sensemaking Marker nodes to the graph.
There were not many issues here regarding the Sensemaking Marker.
The marker (Informative) was not too difficult to add because I could refer to the sensemaking marker registry.
Adding the Event was more difficult because of how to define an Event, and needing to make a sample dataset to describe an event (fields for the name of event, the creator of the event, the work associated with the event, the markers associated with the event).
The main issue I had was how to define an event associated with a marker. I was thinking initially that I could say Person-Event-Work (here that would be Charles Adjovu - Rated_Informative -> "ShopeeFood miscalculates delivery distances. Gig workers in Vietnam are paying the price"), with the marker details as properties, but I realized that could lead to issues because we would need to define the marker with the same details pretty often, and it would make it hard ot traverse the graph based solely on how people and organizations are making sense of the works. So I added Markers as a node to make this task easier.
I am wondering if Event should have a type system as well (Rating, Review, etc.). Additionally, I am thinking about re-naming the relationship from HAS_EVENT to ATTENTION_ON to emphasize that Events are nodes describing how people or organizations are paying attention to a Work.
Lastly, adding the event also required adding a new role, Commentator. I originally planned for this role to include any person or organization that commentates on a work, but I may need to further delineate this role into additional roles, such as Rater, Reviewer, and Annotator (if only applying a label to the work).
I did not have any issues adding Language node (here being EN for English) to the graph.
Though, I may need to add a property to the relationship for the dialect (or new nodes for each language dialect).
I did not use any language detection tools this go around, but for future use, I will do so to help speed up language detection.
I was having trouble using the Identifier label because I could not think of unique names for works and person identifiers early on.
I decided to go with the following nomenclature for identifiers: “space/item_type/id.”
Here is an example for a YouTube video: "youtube/video/2feau76NG5c.”
Here is an example for a Twitter profile: "twitter/profile/owocki."
I do not expect that platforms will duplicate IDs often, so I think this nomenclature is a safe bet for identifiers.
Possibly, adding Platforms (i.e., services) nodes could also address this issue.
I also realized that there will naturally be an issue ID-ing Person nodes because a single ID may be insufficient to uniquely identify a person. I think a possible work-around is hashing the social profiles and the name of the Person with a hashing function, and using the hash an identifier.
I think this is also beneficial for Works as well.
Alternatively, relying more on knowledgebases for entity linking, or simply using the IDs provided by a knowledgebase for an entity to produce a hash.
From trying to address issues with unique names for identifiers, I also realized that I probably need to add a Thing label for nodes, to help classify the thing (or object) a node (or relationship) is.
For example, an Identifier can be considered a thing, while an Identifier label can be replaced with the name of the identifier (e.g., TwitterProfile), with the id set as the name (e.g., owocki).
I think this could help address the naming for Identifiers issue, as well as making Works easier to search for, based on their item type (e.g., video, audio).
I felt that adding all of these nodes (and primarily, the Identifier nodes) took too much time.
It may be best to first start with the following nodes to speed up populating the graph:
Works,
Person, and
MediaSource.