-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing triples after a fragmentation #51
Comments
#55 contains the following fixes
Substring fragmentation
Subject pages → Does not have relations to other pages
|
For the basic fragmentation: can’t we make sure we add one based on a time property? Or is this too complicated? |
If we want different relations for every fragmentation/bucketizer strategy, we should look into moving this into the bucketizers themselves maybe? |
Can’t this then be fixed with this idea? TREEcg/bucketizers#3 |
For a basic fragmentation it is not possible to add The core relation information is defined in RelationParameters and allows different types of relations and properties |
Missing type in the view
When executing
npm run test
with the substring fragmenter (INPUT_FRAGMENTATION_STRATEGY="substring"
) in theroot.ttl
file, the view<begin_of_IRI/root.ttl>
is atree:node
as it contains the relations to the other nodes.However, this node does not have its type declared in the file.
The expected triple that is missing is
<begin_of_IRI/root.ttl> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3id.org/tree#Node>.
Note: While this was tested using the substring behaviour, I assume it would be nice that the type is added when using any bucketizer in the LDES Action
Missing property path in relation
Furthermore, when known (which is the case in the substring fragmenter) could the
tree:path
be added to each relation. While it is not explicitly required according to the TREE specification, as when no property path, each triple from a member is evaluated, it gives more information and can improve performance when creating application on top of TREE/LDES.The text was updated successfully, but these errors were encountered: