
|
If you were logged in you would be able to see more operations.
|
|
Sesame
Created: 09/May/05 03:37 PM
Updated: 13/May/05 10:23 PM
|
|
| Component/s: |
SeRQL
|
| Affects Version/s: |
None
|
| Fix Version/s: |
1.2-RC1
|
|
In some situation it would be convenient to be able to include comments in (SeRQL-)queries. RDQL has adopted C/Java-style comments (/*...*/ and // ...), whereas the upcoming SPARQL uses the #-style comments. The latter looks nicer, IMHO.
Example SPARQL query with comments:
# Get name, and optionally the mbox, of each person
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
SELECT ?name ?mbox
WHERE
{ ?person foaf:name ?name .
OPTIONAL { ?person foaf:mbox ?mbox}
}
|
|
|
There are no comments yet on this issue.
|
| |
|
|