PREFIX rdf: PREFIX rdfs: PREFIX owl: PREFIX xsd: PREFIX x3d: PREFIX x3do: # X3dHelloWorldQuery_03.rq Query HelloWorld.ttl to show title given to model within a WorldInfo node. ############################################### SELECT ?WorldInfoNode ?title ?parentNode WHERE { ?WorldInfo rdf:type x3do:WorldInfo ; x3do:title ?title ; x3do:hasParent ?parent . BIND (strafter(xsd:string(?WorldInfo),"#") AS ?WorldInfoNode) BIND (strafter(xsd:string(?parent),"#") AS ?parentNode) } ############################################### ERROR StatusLogger Reconfiguration failed: No configuration found for '70dea4e' at 'null' in 'null' ------------------------------------------------------------ | WorldInfoNode | title | parentNode | ============================================================ | "WorldInfo_2_1" | "test_mult_singleurl.x3d" | "Scene" | ------------------------------------------------------------