From 4aecdf2a91a60542a998d68c871a6f5843b457ee Mon Sep 17 00:00:00 2001 From: Xiaoqi Zhao Date: Mon, 13 May 2024 13:14:06 -0400 Subject: [PATCH] add 02-03-05 --- LearningSPARQL.mm | 33 +++++++++++++++++++-------------- ch02/02-03/ex040.ttl | 12 ++++++++++++ ch02/02-03/ex041.ttl | 14 ++++++++++++++ 3 files changed, 45 insertions(+), 14 deletions(-) create mode 100644 ch02/02-03/ex040.ttl create mode 100644 ch02/02-03/ex041.ttl diff --git a/LearningSPARQL.mm b/LearningSPARQL.mm index e1b5022..02d30aa 100644 --- a/LearningSPARQL.mm +++ b/LearningSPARQL.mm @@ -120,7 +120,7 @@ - + @@ -628,7 +628,7 @@ - + @@ -647,7 +647,7 @@ - + @@ -909,7 +909,7 @@ Graph Engine (GE) is a distributed in-memory data processing engine, underpinned - + @@ -929,7 +929,7 @@ Graph Engine (GE) is a distributed in-memory data processing engine, underpinned - + @@ -957,7 +957,7 @@ Graph Engine (GE) is a distributed in-memory data processing engine, underpinned - + @@ -1052,17 +1052,17 @@ Graph Engine (GE) is a distributed in-memory data processing engine, underpinned - - + + - + - + @@ -1072,14 +1072,18 @@ Graph Engine (GE) is a distributed in-memory data processing engine, underpinned - + + + - + + + @@ -1130,12 +1134,13 @@ Graph Engine (GE) is a distributed in-memory data processing engine, underpinned - + - + + diff --git a/ch02/02-03/ex040.ttl b/ch02/02-03/ex040.ttl new file mode 100644 index 0000000..ea4646b --- /dev/null +++ b/ch02/02-03/ex040.ttl @@ -0,0 +1,12 @@ +# filename: ex040.ttl + +@prefix ab: . + +ab:i0432 ab:firstName "Richard" ; + ab:lastName "Mutt" ; + ab:postalCode "49345" ; + ab:city "Springfield" ; + ab:homeTel "(229) 276-5135" ; + ab:streetAddress "32 Main Street" ; + ab:region "Connectcut" ; + ab:email "richard49@hotmail.com" . \ No newline at end of file diff --git a/ch02/02-03/ex041.ttl b/ch02/02-03/ex041.ttl new file mode 100644 index 0000000..0904629 --- /dev/null +++ b/ch02/02-03/ex041.ttl @@ -0,0 +1,14 @@ +# filename: ex040.ttl + +@prefix ab: . + +ab:i0432 ab:firstName "Richard" ; + ab:lastName "Mutt" ; + ab:homeTel "(229) 276-5135" ; + ab:email "richard49@hotmail.com" ; + ab:address _:b1 . + +_:b1 ab:postalCode "49345" ; + ab:city "Springfield" ; + ab:streetAddress "32 Main Street" ; + ab:region "Connectcut" . \ No newline at end of file