Skip to content

Instantly share code, notes, and snippets.

@knbknb
Last active August 3, 2025 16:36
Show Gist options
  • Select an option

  • Save knbknb/007d04dcfe09ad4d7ba0d8653a0dab82 to your computer and use it in GitHub Desktop.

Select an option

Save knbknb/007d04dcfe09ad4d7ba0d8653a0dab82 to your computer and use it in GitHub Desktop.
SPARQL: Show Common Graph Objects & Types
# CONSTRUCT query to surface the graph schema (ontology) as a sub-graph.
CONSTRUCT {
?domain ?property ?range
}
WHERE {
?property rdfs:domain ?domain ;
rdfs:range ?range .
FILTER(?domain NOT IN(rdfs:Class, rdf:Property))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment