query-b5f9d8432f670c502dbbfd0dd74a6409

rq turtle/ttl

Our first query Suppose we want to list all children of the baroque composer Johann Sebastian Bach. Using pseudo-elements like in the queries above, how would you write that query? Hopefully you got something like this:

Use at

SELECT ?dziecko
WHERE
{
  #  child "has parent" Bach
  ?child parent Bach.
  # (note: everything after a ‘#’ is a comment and ignored by WDQS.)
}

Query found at