I'm executing SPARQL query on virtuoso SPARQL editor.
The result of query in HTML format is displaying in next line for each corresponding record as shown on below image:
Kindly advise how to resolve this display issue.
Here is the SPARQL query:
prefix DOL: <http://www.MyOnt.com/something/v1#>
prefix foaf: <http://xmlns.com/foaf/0.1/>
select ?cName ?domain ?dValues ?method ?rType{
{
?class foaf:name "MyJavaClass" .
}
{ ?class foaf:name ?cName }
union
{ ?class DOL:belongsTo ?domain }
union
{ ?class2 DOL:domainName ?dValues }
union
{ ?class DOL:hasMethod ?method }
union
{ ?class2 DOL:returnType ?rType }
}