NBU-DSCM-2020 / dscm006-semtech-group-project

NBU Data Science 2020 DSCM006 Semantic Technologies Group Project
0 stars 0 forks source link

Swap buyerName and Description in media register #10

Open mariana-angelova opened 3 years ago

mariana-angelova commented 3 years ago

Important: Check if there are not correctly swapped already!

Second part of the task

Example SPARQL query:


delete {
  ?contract :buyerName ?x; :description ?y
} insert {
  ?contract :buyerName ?y; :description ?x
} where {
  ?contract a :Contract; :buyerName ?x; :description ?y
}