In the below query I extract all entities with class :Entity
, regardless of whether they live inside a specific context (named graph) or not.
SELECT ?s
WHERE {
?s a :Entity .
}
I would like to filter among these entities, to keep only those that don't live inside any named graph, i.e., only the entities that exist outside all named graphs (EDIT: I guess the correct terminology is that I want to search for triples only in the default graph).
How can I do this?