We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 816d3cd commit f23108cCopy full SHA for f23108c
docs/sparql-extensions/macros.md
@@ -26,10 +26,13 @@ PREFIX sh: <http://www.w3.org/ns/shacl#>
26
PREFIX eg: <http://www.example.org/>
27
28
eg:prefixMapping
29
- sh:declare [ sh:prefix "afn" ; sh:namespace "http://jena.apache.org/ARQ/function#" ]
+ sh:declare [ sh:prefix "afn" ; sh:namespace "http://jena.apache.org/ARQ/function#" ] ;
30
.
31
32
-eg:greet udf:simpleDefinition ("CONCAT('Hello ', STR(?x), '!')" "x") .
+eg:greet
33
+ sh:prefixes eg:prefixMapping ;
34
+ udf:simpleDefinition ("CONCAT('Hello ', STR(?x), '!')" "x") ;
35
+ .
36
```
37
38
## Using the Macros
0 commit comments