PREFIX aida:<http://aida.kmi.open.ac.uk/ontology#> |
PREFIX cso: <http://cso.kmi.open.ac.u/topics/> |
PREFIX schema: <http://schema.org/> |
SELECT ?paper ?ind (count(?author) as ?nauthor) |
FROM <http://aida.kmi.open.ac.uk/resource> |
WHERE { |
?paper aida:hasTopic cso:semantic_web . |
?paper aida:hasIndustrialSector ?ind . |
?paper aida:hasPercentageOfAcademia ?x . |
?paper schema:creator ?author . |
FILTER (?x>80) |
} |
ORDER BY ?paper |
PREFIX aida:<http://aida.kmi.open.ac.uk/ontology#> |
PREFIX cso: <http://cso.kmi.open.ac.u/topics/> |
PREFIX schema: <http://schema.org/> |
SELECT ?paper ?ind (count(?author) as ?nauthor) |
FROM <http://aida.kmi.open.ac.uk/resource> |
WHERE { |
?paper aida:hasTopic cso:semantic_web . |
?paper aida:hasIndustrialSector ?ind . |
?paper aida:hasPercentageOfAcademia ?x . |
?paper schema:creator ?author . |
FILTER (?x>80) |
} |
ORDER BY ?paper |