I would like to retrieve property/object pairs of a given subject, but only for these properties matching a specific namespace (let us say rdflib.RDFS
.)
Something like g.predicate_objects(s, prop_prefix=RDFS)
.
Is there a built-in way to achieve that, or should I rather retrieve all pairs and filter myself on the property IRI?