Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
titleCount agents without labels
SELECT count(DISTINCT ?s)
WHERE {
    ?s rdf:type foaf:Agent .
    OPTIONAL {?s rdfs:label ?label .}
    FILTER(!bound(?label))
}


Code Block
titleCount grants positions without labels
SELECT count(DISTINCT ?s)
WHERE {
    ?s rdf:type vivo:GrantPosition .
    OPTIONAL {?s rdfs:label ?label .}
    	FILTER(!bound(?label))
}


Code Block
titleCount positions without labels
SELECT count(DISTINCT ?s)
WHERE {
    ?s rdf:type vivo:Position .
    OPTIONAL {?s rdfs:label ?label .}
	FILTER(!bound(?label))
}

...

Code Block
titleCount publications without labels
SELECT count(DISTINCT ?s)
WHERE {
    ?s rdf:type vivo:InformationResource .
    OPTIONAL {?s rdfs:label ?label .}
    FILTER(!bound(?label))
}

...