Versions Compared

Key

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

...

This query returns the number of Agents (Persons, Orgs) without a label

Select count(?s)

Where WHERE {

?s rdf:type foaf:Agent .

Optional OPTIONAL {?s rdfs:label ?llabel} .

Filter FILTER(!bound (?llabel))

}

This query returns the number of UF Persons with a ufid and without a label (#0 as of 3/7/11)

...