String qs1 = StrUtils.strjoinNL(prologue,
"SELECT * {" ,
" ?definition :entityField ?entityField ;" ,
" :geoField ?geoField" ,
"}") ;
ParameterizedSparqlString pss = new ParameterizedSparqlString(qs1) ;
pss.setIri("definition", root.getURI()) ;
Query query1 = QueryFactory.create(pss.toString()) ;
QueryExecution qexec1 = QueryExecutionFactory.create(query1, model) ;
ResultSet rs1 = qexec1.execSelect() ;
List<QuerySolution> results = ResultSetFormatter.toList(rs1) ;
if ( results.size() == 0 ) {
//Log.warn(this, "Failed to find a valid EntityDefinition for : "+root) ;