You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to suggest to generally bind blank nodes from sparql queries to some generic string. Its annoying to have huge diffs everytime due to the random number assigned to these.. There are probably more sophisticated solutions, but I think this is the best low effort, medium reward one.
PREFIX owl: <http://www.w3.org/2002/07/owl#>
SELECT DISTINCT ?entity ?property ?value WHERE {
VALUES ?property { owl:equivalentClass }
?entity ?property ?value1 .
?entity ?property ?value2 .
FILTER (?value1 != ?value2)
FILTER (!isBlank(?entity))
BIND(IF(isBlank(?value1),"anonymous expression",?value1) as ?value)
}
ORDER BY ?entity
The text was updated successfully, but these errors were encountered:
I would like to suggest to generally bind blank nodes from sparql queries to some generic string. Its annoying to have huge diffs everytime due to the random number assigned to these.. There are probably more sophisticated solutions, but I think this is the best low effort, medium reward one.
The text was updated successfully, but these errors were encountered: