我有以下 sparql 查询:
PREFIX spec: <http://rdfs.org/sioc/spec/>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX constraint: <http://purl.org/vocab/constraint/constraint#>
SELECT
(sample(?FName) as ?fName)
(sample(?Midname) as ?midname)
(sample(?User) as ?user)
(GROUP_CONCAT(DISTINCT ?userRole; separator='; ') AS ?UserRole)
WHERE {
GRAPH <http://example.com/>
{
?User spec:email ?Email .
?User foaf:firstName ?FirstName .
?User foaf:surname ?Midname .
OPTIONAL
{
?User constraint:containsConstraint ?constraint .
?constraint constraint:constrains ?userRoleUri .
?userRoleUri spec:name ?userRole.
}
FILTER (str(?userRoleUri) IN("http://example.com/roles/admin", "http://example.com/roles/moderator"))
}
} GROUP BY ?FName ORDER BY ASC(?FName)
此查询的作用是返回匹配的用户。因此,如果用户“A”列出了 3 个角色:编辑、管理员和版主,它只显示用户的两个角色。像 :
A - Mid - a@abc.om - admin;moderator
我想从查询中做的是:由于用户 A 匹配任何给定的过滤条件,因此应该列出它的所有角色。有没有办法改进这个查询?我也尝试在过滤器中使用子选择和正则表达式,但是:(
在此先感谢 Sparkler