Skip to content
Snippets Groups Projects
Commit 1e0fde0c authored by Said Fathalla's avatar Said Fathalla
Browse files

adding SPARQL update scripts to enrich the collected data

parent bde28597
No related branches found
No related tags found
No related merge requests found
Pipeline #200803 failed
# The rule for identifying resources that have to be of type schema:Person
If P is (creator or author ) AND hasAffiliation --> P is a Person
PREFIX schema: <http://schema.org/>
INSERT { ?p a schema:Person> }
WHERE {
?r schema:creator|schema:author ?p.
?p schema:affiliation ?aff.
?p schema:name ?name
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment