We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In CIDOC-CRM there is crm:P23_transferred_title_from and crm:P22_transferred_title_to.
crm:P23_transferred_title_from
crm:P22_transferred_title_to
Most likely crm:P23_transferred_title_from was intended property.
The problem that I can't find where this data is coming from, the only match in https://github.com/ArtResearch/pharos-mappings is in the field definition:
SELECT distinct ?value (GROUP_CONCAT(DISTINCT ?provider; SEPARATOR=\", \") AS ?provider) (GROUP_CONCAT(DISTINCT ?providerLabel; SEPARATOR=\", \") AS ?providerLabel) (count(distinct ?provider) as ?countProviders) WHERE { graph ?graph { ?subject crm:P24i_changed_ownership_through ?acquisition. ?acquisition crm:P22_transferred_title_from|crm:P23_transferred_title_from ?value. } ?graph <https://artresearch.net/custom/has_provider> ?provider . ?provider rdfs:label ?providerLabel. } GROUP BY ?value order by desc(COUNT(distinct ?provider))
query to get all instances with this property:
PREFIX crm: <http://www.cidoc-crm.org/cidoc-crm/> SELECT * { ?s crm:P22_transferred_title_from ?o . }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In CIDOC-CRM there is
crm:P23_transferred_title_from
andcrm:P22_transferred_title_to
.Most likely
crm:P23_transferred_title_from
was intended property.The problem that I can't find where this data is coming from, the only match in https://github.com/ArtResearch/pharos-mappings is in the field definition:
query to get all instances with this property:
The text was updated successfully, but these errors were encountered: