12345678910111213141516171819202122 |
- PREFIX dcterms: <http:
- PREFIX fcrepo: <http:
- PREFIX foaf: <http:
- PREFIX ldp: <http:
- INSERT DATA {
- GRAPH <info:fcsystem/graph/userdata/_main/> {
- <info:fcres/> dcterms:title "Repository Root" .
- }
- GRAPH <info:fcsystem/graph/admin/> {
- <info:fcres/> a
- fcrepo:RepositoryRoot , fcrepo:Resource , fcrepo:Container ,
- ldp:Container , ldp:BasicContainer , ldp:RDFSource ;
- .
- }
- GRAPH <info:fcsystem/meta> {
- <info:fcsystem/graph/admin/> foaf:primaryTopic <info:fcres/> .
- <info:fcsystem/graph/userdata/_main/> foaf:primaryTopic <info:fcres/> .
- }
- }
|