Active database summary
The table below queries the active graph to list all distinct classes currently instantiated in your vault:
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT DISTINCT ?class WHERE {
?s rdf:type ?class .
FILTER(STRSTARTS(STR(?class), "https://schema.org/"))
}
ORDER BY ?class
| Class |
|---|
| https://schema.org/Person |
| https://schema.org/SoftwareApplication |
| https://schema.org/TechArticle |