graph_per_aspect.trig 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. # This layout follows the graph-per-aspect pattern
  2. # (http://patterns.dataincubator.org/book/graph-per-aspect.html).
  3. PREFIX dc: <http://purl.org/dc/elements/1.1/>
  4. PREFIX fcrepo: <http://fedora.info/definitions/v4/repository#>
  5. PREFIX fcsystem: <info:fcsystem/>
  6. PREFIX fcg: <info:fcsystem/graph/>
  7. PREFIX foaf: <http://xmlns.com/foaf/0.1/>
  8. PREFIX ldp: <http://www.w3.org/ns/ldp#>
  9. PREFIX ns: <http://example.edu/lakesuperior/ns#>
  10. PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
  11. # Admin data graphs.
  12. # Triples used by the application business logic are stored here.
  13. # These are a convenient way to get resource metadata (e.g. with a HEAD
  14. # request) without loading large graphs, e.g. ones with many children
  15. # or many user-provided properties.
  16. # System root.
  17. <info:fcsystem/graph/admin/> {
  18. <info:fcres/> a
  19. fcrepo:RepositoryRoot , fcrepo:Resource , fcrepo:Container ,
  20. ldp:Container , ldp:BasicContainer , ldp:RDFSource ;
  21. .
  22. }
  23. <info:fcsystem/graph/admin/a/b/c> {
  24. <info:fcres/a/b/c> a fcrepo:Resource ;
  25. # Timestamps are simplified for readability.
  26. fcrepo:created "2017-11-23"^^xsd:date ;
  27. fcrepo:lastModified "2017-11-27"^^xsd:date ;
  28. fcrepo:hasVersion
  29. <info:fcres/a/b/c;v1> , <info:fcres/a/b/c;v2> , <info:fcres/a/b/c;v3> ;
  30. .
  31. }
  32. <info:fcsystem/graph/admin/a/b/c;v1> {
  33. <info:fcres/a/b/c;v1> a fcrepo:Version ;
  34. fcrepo:created "2017-11-23"^^xsd:date ;
  35. fcrepo:lastModified "2017-11-23"^^xsd:date ;
  36. .
  37. }
  38. <info:fcsystem/graph/admin/a/b/c;v2> {
  39. <info:fcres/a/b/c;v2> a fcrepo:Version ;
  40. fcrepo:created "2017-11-23"^^xsd:date ;
  41. fcrepo:lastModified "2017-11-24"^^xsd:date ;
  42. .
  43. }
  44. <info:fcsystem/graph/admin/a/b/c;v3> {
  45. <info:fcres/a/b/c;v3> a fcrepo:Version ;
  46. fcrepo:created "2017-11-23"^^xsd:date ;
  47. fcrepo:lastModified "2017-11-25"^^xsd:date ;
  48. .
  49. }
  50. # Pairtree information used to mimic hierarchical structures.
  51. <info:fcsystem/graph/admin/a> {
  52. <info:fcres/a>
  53. a ldp:Container , ldp:BasicContainer , ldp:Resource , ldp:RDFSSource ;
  54. a fcrepo:Pairtree ;
  55. }
  56. <info:fcsystem/graph/admin/a/b> {
  57. <info:fcres/a/b>
  58. a ldp:Container , ldp:BasicContainer , ldp:Resource , ldp:RDFSSource ;
  59. a fcrepo:Pairtree ;
  60. .
  61. }
  62. # "Structural" data. This separation is made mostly to optimize retrieval of
  63. # information needed by the application business logic without having to
  64. # retrieve or filter out predicates with potentially large amounts of objects,
  65. # such as `ldp:contains`.
  66. <info:fcsystem/graph/structure/> {
  67. <info:fcres/> ldp:contains <info:fcres/a/b/c> .
  68. # fcsystem:contains is used to mimic path hierarchies. It does not coincide
  69. # with LDP containment.
  70. <info:fcres/> fcsystem:contains <info:fcres/a> .
  71. }
  72. <info:fcsystem/graph/structure/a> {
  73. <info:fcres/a> fcsystem:contains <info:fcres/a/b> .
  74. }
  75. <info:fcsystem/graph/structure/a/b> {
  76. <info:fcres/a/b> fcsystem:contains <info:fcres/a/b/c> .
  77. }
  78. # Resource graphs. These statements are user-provided and not used for any
  79. # application business logic.
  80. # Note that "fragments", i.e. hash URIs, are stored within the same graph.
  81. <info:fcsystem/graph/userdata/_main/a/b/c> {
  82. <info:fcres/a/b/c> a ns:Book ;
  83. fcrepo:hasParent <info:fcres/a> ;
  84. dc:title "Moby Dick" ;
  85. dc:creator "Herman Melville" ;
  86. dc:subject "Fishing" ;
  87. .
  88. <info:fcres/a/b/c#chapter1> a ns:BookChapter ;
  89. dc:title "Loomings." ;
  90. .
  91. <info:fcres/a/b/c#chapter2> a ns:BookChapter ;
  92. dc:title "The Carpet-Bag." ;
  93. .
  94. }
  95. # Previous states (versions) of a resource.
  96. <info:fcsystem/graph/userdata/_main/a/b/c;v1> {
  97. <info:fcres/a/b/c;v1> a ns:Book ;
  98. fcrepo:hasParent <info:fcres/> ;
  99. dc:title "Moby Dick" ;
  100. .
  101. }
  102. <info:fcsystem/graph/userdata/_main/a/b/c;v2> {
  103. <info:fcres/a/b/c;v2> a ns:Book ;
  104. fcrepo:hasParent <info:fcres/> ;
  105. dc:title "Moby Dick" ;
  106. dc:creator "Herman Melvil" ;
  107. .
  108. }
  109. <info:fcsystem/graph/userdata/_main/a/b/c;v3> {
  110. <info:fcres/a/b/c;v3> a ns:Book ;
  111. fcrepo:hasParent <info:fcres/> ;
  112. dc:title "Moby Dick" ;
  113. dc:creator "Herman Melville" ;
  114. .
  115. }
  116. # Metadata graph. This contains information about graphs and their
  117. # relationships.
  118. <info:fcsystem/graph/meta> {
  119. # This may not be used by the application logic if we use naming
  120. # conventions, but is still good LD practice.
  121. <info:fcsystem/graph/admin/> foaf:primaryTopic <info:fcres/> .
  122. <info:fcsystem/graph/userdata/_main/> foaf:primaryTopic <info:fcres/> .
  123. <info:fcsystem/graph/structure/> foaf:primaryTopic <info:fcres/> .
  124. <info:fcsystem/graph/admin/a/b/c> foaf:primaryTopic <info:fcres/a/b/c> .
  125. <info:fcsystem/graph/userdata/_main/a/b/c> foaf:primaryTopic <info:fcres/a/b/c> .
  126. # Pairtree information is kept in one graph so no metadata are needed.
  127. }
  128. # Historic version metadata. This is kept separate to optimize current resource
  129. # lookups.
  130. <info:fcsystem/graph/historic> {
  131. <info:fcsystem/graph/admin/a/b/c;v1>
  132. foaf:primaryTopic <info:fcres/a/b/c;v1> ;
  133. fcrepo:created "2017-11-24"^^xsd:date ;
  134. .
  135. <info:fcsystem/graph/admin/a/b/c;v2>
  136. foaf:primaryTopic <info:fcres/a/b/c;v2> ;
  137. fcrepo:created "2017-11-25"^^xsd:date ;
  138. .
  139. <info:fcsystem/graph/admin/a/b/c;v3>
  140. foaf:primaryTopic <info:fcres/a/b/c;v3> ;
  141. fcrepo:created "2017-11-26"^^xsd:date ;
  142. .
  143. <info:fcsystem/graph/userdata/_main/a/b/c;v1>
  144. foaf:primaryTopic <info:fcres/a/b/c;v1> ;
  145. fcrepo:created "2017-11-24"^^xsd:date ;
  146. .
  147. <info:fcsystem/graph/userdata/_main/a/b/c;v2>
  148. foaf:primaryTopic <info:fcres/a/b/c;v2> ;
  149. fcrepo:created "2017-11-25"^^xsd:date ;
  150. .
  151. <info:fcsystem/graph/userdata/_main/a/b/c;v3>
  152. foaf:primaryTopic <info:fcres/a/b/c;v3> ;
  153. fcrepo:created "2017-11-26"^^xsd:date ;
  154. .
  155. }