# Query Type: 6, Single-delta structured queries (queries performed on changes of two consecutive versions (delta)) # Query Description : # Retreive the difference in the number of Blog Posts between the current and a historical version PREFIX cwork: SELECT (ABS(?cnt_2 - ?cnt_1) AS ?blog_posts_diff) WHERE { { SELECT (COUNT(*) AS ?cnt_1) WHERE { GRAPH {{{graphVmax}}} { ?creativeWork a cwork:BlogPost } } } . { SELECT (COUNT(*) AS ?cnt_2) WHERE { GRAPH {{{graphVhistorical}}} { ?creativeWork a cwork:BlogPost } } } }