// This JSONObject contains the query-triples!
// This is no standard and a proprietary feature of LUPOSDATE!
final JSONArray triples = oneResult.getJSONArray(var);
for(int i=0; i<triples.length(); i++){
final JSONObject jsonTriple = triples.getJSONObject(i);
luposResult.addTriple(new Triple(getLiteral(jsonTriple.getJSONObject("subject")), getLiteral(jsonTriple.getJSONObject("predicate")), getLiteral(jsonTriple.getJSONObject("object"))));
}
}
}
return luposResult;
}