Skip to content

Commit

Permalink
fix: Change GTM PID to sameAs (#1444)
Browse files Browse the repository at this point in the history
PIDs in the GTM KG used to be in the sdo:identifier property, but have move to the owl:sameAs property, this made the ETL pipeline much easier.
  • Loading branch information
coret authored Oct 28, 2024
1 parent c69ed56 commit 06118f5
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,8 @@ CONSTRUCT {
luc:query ?query ;
luc:entities ?uri .

?uri sdo:identifier ?pid
FILTER(STRSTARTS(?pid, "https://n2t.net"))
BIND(IRI(?pid) AS ?piduri)
?uri owl:sameAs ?piduri
FILTER(STRSTARTS(STR(?piduri), "https://n2t.net"))

?uri sdo:name ?prefLabel ;
luc:score ?score .
Expand Down

0 comments on commit 06118f5

Please sign in to comment.