query-4c393a03446f1592920a0b8fe6d6843d

rq turtle/ttl

TODO

Use at

SELECT ?item        # This is the select for the second query
                            # take the results of the first query, named %i
WHERE                      
{

{
  SELECT ?item WHERE {              # This is the select for the first query
  ?item ?predicate ?value .         # This is the first query
  } 
}                       # use the results of the first query 
  ?item ?predicate2 ?value2 .       # this is the second query
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?item"):::projected v2("?predicate") v4("?predicate2") v3("?value") v5("?value2") v1 -->v2--> v3 v1 -->v4--> v5