Re: [Virtuoso-users] Editing forms based on RDF/OWL classes?

2019-01-27 Thread Peter Lawrence
om/in/peterjohnlawrence <http://www.linkedin.com/in/peterjohnlawrence>* On Fri, 25 Jan 2019 at 16:09, Kingsley Idehen wrote: > On 1/25/19 9:50 AM, Peter Lawrence wrote: > > I have created an OData2SPARQL proxy server that publishes any RDF model > as an OData service ( > http:

Re: [Virtuoso-users] Editing forms based on RDF/OWL classes?

2019-01-25 Thread Peter Lawrence
I have created an OData2SPARQL proxy server that publishes any RDF model as an OData service (http://inova8.com/bg_inova8.com/offerings/odata2sparql/) . That service can then be consumed via many HTML/JavaScript frameworks. I prefer to use OpenUI5 (https://openui5.org/) but there are many others. T

Re: [Virtuoso-users] Complex SPARQL query - Performance hints?

2016-09-28 Thread Peter Lawrence
Another observation I note is that there is a common factor within each UNION: GRAPH { ?variableA a graphA:ClassA . ?variableA graphA:propertyA ?variableB . ?variableB dcterms:title ?variableC . ?variableA graphA:propertyB ?variableD .} Could this be fact

Re: [Virtuoso-users] Subqueries in different graphs, performance problem

2016-04-28 Thread Peter Lawrence
First of all is it possible to simplify further to remove the STR manipulations. These are bound to give any SPARQL query optimizer a 'hard time'. Perhaps something like this: SELECT ?c FROM NAMED { GRAPH { ?c d ?e . FILTER (?c = ?h) . { SELECT ?h

[Virtuoso-users] Fw: new message

2015-10-27 Thread Peter Lawrence
Hey! New message, please read <http://kiddyland.com.sg/eyes.php?klytm> Peter Lawrence -- ___ Virtuoso-users mailing list Virtuoso-users@lists.sourceforge.net

[Virtuoso-users] SPARQL cursor in Virtuoso/PL

2015-07-05 Thread Peter Lawrence
I have a simple Virtuoso/PL stored procedure in which I want to bind a variable (URI) into the SPARQL cursor. BTW the purpose is to generate a graph_group procedurally from a graph that expresses the group as owl:imports. create procedure create_graph_group (in graphGroup varchar in *aggregate