rsrc_centric_layout.sparql 768 B

123456789101112131415161718192021222324
  1. PREFIX dcterms: <http://purl.org/dc/terms/>
  2. PREFIX fcrepo: <http://fedora.info/definitions/v4/repository#>
  3. PREFIX foaf: <http://xmlns.com/foaf/0.1/>
  4. PREFIX ldp: <http://www.w3.org/ns/ldp#>
  5. INSERT DATA {
  6. GRAPH <info:fcsystem/graph/userdata/_main/> {
  7. <info:fcres/> dcterms:title "Repository Root" .
  8. }
  9. GRAPH <info:fcsystem/graph/admin/> {
  10. <info:fcres/> a
  11. fcrepo:RepositoryRoot , fcrepo:Resource , fcrepo:Container ,
  12. ldp:Container , ldp:BasicContainer , ldp:RDFSource ;
  13. .
  14. }
  15. GRAPH <info:fcsystem/meta> {
  16. <info:fcsystem/graph/admin/> a <info:fcsystem/AdminGraph> ;
  17. foaf:primaryTopic <info:fcres/> .
  18. <info:fcsystem/graph/userdata/_main/> a <info:fcsystem/UserProvidedGraph> ;
  19. foaf:primaryTopic <info:fcres/> .
  20. }
  21. }