Normalize a graph or match term to URIRef for rdflib-safe equality.
Source code in ontocast/tool/agg/match_models.py
| def as_uri_ref(value: URIRef | str) -> URIRef:
"""Normalize a graph or match term to URIRef for rdflib-safe equality."""
return coerce_uri_ref(value)
|