Re: Data export of ldp container and all children data

2016-05-04 Thread Apache
Hi what about using a SPARQL construct and PropertyPaths, something like (untested): CONSTRUCT { ?b ?c. ?s ?p ?o } WHERE { ldp:contains* ?s; ?b ?c. ?s ?p ?o. } Regards Thomas > Am 03.05.2016 um 17:45 schrieb Brent Shambaugh : > > Dear all, > > I have done a SPARQL select to get data

Re: Data export of ldp container and all children data

2016-05-04 Thread Sergio Fernández
No, sorry, LDP 1.0 does not provide such capabilities, and in Marmotta we never had an scenario where such feature was needed. But feel free to register it as feature request to our jira, and optionally submit a patch/pr implementing it. On Tue, May 3, 2016 at 5:45 PM, Brent Shambaugh wrote: > D

Data export of ldp container and all children data

2016-05-03 Thread Brent Shambaugh
Dear all, I have done a SPARQL select to get data in an ldp container and its immediate children with the desired container uri as the subject. SELECT * { ?predicate ?object . ?object ?predicate_two ?object_two . } I have also done a data ex