Is there a way to sort the results by creation date?
Example query which must be sortet:
SELECT * WHERE {?s ?p ?o} limit 200
|
|
|
|
|
|
|
You can use an order by clause just like you can in SQL. Note that per the SPARQL specification, the
Update: If you're not already storing the creation date, you will need to store the metadata yourself. As to how do to do that, you have a few options:
An example of option #2's SPARQL query would be:
|
||||||
|
|
|
Since you've said you don't actually store the creation date in your RDF then any possible mechanism for doing this would be specific to the SPARQL implementation you were using and the backing RDF store or whatever. It's quite likely that it's just not possible. |
||
|
|