Skip to content

Commit

Permalink
#443 Update testDoc4 expected graph
Browse files Browse the repository at this point in the history
  • Loading branch information
luigi-asprino committed Aug 12, 2024
1 parent 16ab30a commit f192921
Showing 1 changed file with 22 additions and 14 deletions.
36 changes: 22 additions & 14 deletions sparql-anything-docs/src/test/resources/Doc4.ttl
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

PREFIX dc: <http://purl.org/dc/elements/1.1/>
PREFIX eg: <http://www.example.org/>
PREFIX fx: <http://sparql.xyz/facade-x/ns/>
Expand All @@ -25,12 +24,6 @@ PREFIX xyz: <http://sparql.xyz/facade-x/data/>
rdf:type xyz:CommentAuthor;
rdf:_1 "Luigi Asprino" .

<http://www.example.org/document/Comment_1>
rdf:type xyz:Comment;
rdf:_1 <http://www.example.org/document/Comment_1/Author>;
rdf:_2 <http://www.example.org/document/Comment_1/CommentText>;
rdf:_3 <http://www.example.org/document/Comment_1/CommentId> .

<http://www.example.org/document/Comment_0/CommentId>
rdf:type xyz:CommentId;
rdf:_1 "0" .
Expand All @@ -43,12 +36,6 @@ PREFIX xyz: <http://sparql.xyz/facade-x/data/>
rdf:type xyz:CommentAuthor;
rdf:_1 "Luigi Asprino" .

<http://www.example.org/document/Comment_0>
rdf:type xyz:Comment;
rdf:_1 <http://www.example.org/document/Comment_0/Author>;
rdf:_2 <http://www.example.org/document/Comment_0/CommentText>;
rdf:_3 <http://www.example.org/document/Comment_0/CommentId> .

<http://www.example.org/document/paragraph/7>
rdf:type xyz:Paragraph;
rdf:_1 "Paragraph3" .
Expand All @@ -65,11 +52,33 @@ PREFIX xyz: <http://sparql.xyz/facade-x/data/>
rdf:type xyz:ListParagraph;
rdf:_1 "Bullet1 " .

<http://www.example.org/document/Comment_1/ThreadCommentNumber>
rdf:type xyz:ThreadCommentNumber;
rdf:_1 "1"^^xsd:int .

<http://www.example.org/document/Comment_1>
rdf:type xyz:Comment;
rdf:_1 <http://www.example.org/document/Comment_1/Author>;
rdf:_2 <http://www.example.org/document/Comment_1/CommentText>;
rdf:_3 <http://www.example.org/document/Comment_1/CommentId>;
rdf:_4 <http://www.example.org/document/Comment_1/ThreadCommentNumber> .

<http://www.example.org/document/paragraph/3>
rdf:type xyz:Paragraph;
rdf:_1 "Paragraph2";
rdf:_2 <http://www.example.org/document/Comment_1> .

<http://www.example.org/document/Comment_0/ThreadCommentNumber>
rdf:type xyz:ThreadCommentNumber;
rdf:_1 "1"^^xsd:int .

<http://www.example.org/document/Comment_0>
rdf:type xyz:Comment;
rdf:_1 <http://www.example.org/document/Comment_0/Author>;
rdf:_2 <http://www.example.org/document/Comment_0/CommentText>;
rdf:_3 <http://www.example.org/document/Comment_0/CommentId>;
rdf:_4 <http://www.example.org/document/Comment_0/ThreadCommentNumber> .

<http://www.example.org/document/paragraph/2>
rdf:type xyz:Paragraph;
rdf:_1 "Paragraph1";
Expand All @@ -87,4 +96,3 @@ eg:document rdf:type xyz:Document , fx:root;
rdf:_5 <http://www.example.org/document/ListParagraph/5>;
rdf:_6 <http://www.example.org/document/Heading2/6>;
rdf:_7 <http://www.example.org/document/paragraph/7> .

0 comments on commit f192921

Please sign in to comment.