> count certainly does work: could you provide an example of it not working?
> select (count(*) as ?total) {
> ... condition ...
> }
ah, ok. I forgot the parenthesis. Great, it works now :
SELECT (count(*) as ?total)
WHERE
{
GRAPH ?graph {
?s ?p ?o
}
}
returns
---------
| total |
=========
| 50296 |
---------
> Are you trying to do this in just one query?
If only it were possible ?
