Re: [Virtuoso-users] Support for Describe sparql

2008-01-22 Thread Rajeev J Sebastian
Hello all, After spending many frustrating hours trying to fix the below attached problems, finally I figured out from the DAWG test cases that I should be doing something like describe ?s where {?s urn:prop1 ?o . FILTER(?o = 1). } However. that *still* didnt work, though the test cases were wor

Re: [Virtuoso-users] SPARQL Demo

2008-01-22 Thread Garry M. Biggs
Hi Reto, While we look into your issues, assuming you are using the very latest 5.0.3 release of Virtuoso, you can also do the following: 1. Upload RDF to the Quad Store by simply executing a SPARQL Query against an RDF information resource URI (Graph Name with be the resource URI) 2. Install

Re: [Virtuoso-users] SPARQL Demo

2008-01-22 Thread Reto Bachmann-Gmür
Hi Garry Your first curl command seems very similar to what I've been doing with my webdav client (konqueror) except that you're putting to home/demo rather that home/dav as I did. If I understand things correctly PUTting to the rdf_sink should make the triples directly available Still it do

Re: [Virtuoso-users] Support for Describe sparql

2008-01-22 Thread Rajeev J Sebastian
Hello Ivan, Thanks for your response. The reason I asked about it was that a particular query was not working for me. Sample graph: urn:foo1 urn:prop1 "1"^^xsd:integer. urn:foo2 rdf:label "bar". Queries: describe ?x where {?x rdf:label "bar". } <- works, returns all the triples with urn:foo2