Hi everyone,
I want insert a list of types to sh:in which would be :
<uri>
sh:in *(*
* "aaa"*
* "bbb"*
* "ccc"*
* ) ;*
my query doesn't work :
INSERT{
<URI> sh:in ?product
}
WHERE {
SELECT ?product
# (GROUP_CONCAT(?product; SEPARATOR=', ') AS ?result)
{
BIND(teamwork:currentMasterGraph() as ?cGraph)
GRAPH ?cGraph
{?cGraph owl:imports ?import}
GRAPH ?import{
?d a skos:Concept.
?d skos:hasTopConcept ?Concept.
?ProductT skos:broader ?Concept.
?ProductT uri:product ?product .
}
FILTER(CONTAINS(STR(?Concept),"service"))
## BIND (ui:label(?product) AS ?label) .
}GROUP BY ?product }
the result with concat_group is <uri>
sh:in *(*
* "aaa,**bbb, **ccc"*
* ) ;*
and this is not what I need.
Could you give me a hint how to resolve this?
Thanks,
Kasia
--
The topics of this mailing list include TopBraid EDG and related technologies
such as SHACL.
To post to this group, send email to [email protected]
---
You received this message because you are subscribed to the Google Groups
"TopBraid Suite Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/topbraid-users/ead4c18d-f520-47f3-8664-022c51c6c286n%40googlegroups.com.