It is a follow up question to :
How to list and count the different types of node and edge entities in the graph data using SPARQL query?
So assuming I have the
I think what you're looking for is
construct { ?paper :isWrittenBy ?author . ?paper :isCitedBy ?paper2 } where { ?paper :isWrittenBy ?author . ?paper :isCitedBy ?paper2 }
The spec section on construct queries might be a helpful reference.