SPARQL functions in CONSTRUCT/WHERE

Yes this is possible You can’t use expressions directly in a CONSTRUCT template but you can assign the variable in the WHERE clause either via a SELECT expression in a sub-query or using BIND. In your case as GROUP_CONCAT is an aggregate it can only be a SELECT expression so you just need to put … Read more