# code-block-pro/1.10.0/build/shiki/samples/sparql.sample

Code Block Pro – Beautiful Syntax Highlighting, version 1.10.0. 8 lines.

- Page: https://pluginprobe.com/plugins/code-block-pro/1.10.0/code/build/shiki/samples/sparql.sample
- Raw: https://pluginprobe.com/plugins/code-block-pro/1.10.0/raw/build/shiki/samples/sparql.sample
- Modified: 2022-08-22T22:25:46+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/code-block-pro/1.10.0/code/build/shiki/samples/sparql.sample#L10-L20`.

```
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
SELECT ?name (COUNT(?friend) AS ?count)
WHERE { 
    ?person foaf:name ?name . 
    ?person foaf:knows ?friend . 
} GROUP BY ?person ?name

# From https://www.w3.org/TR/sparql11-overview/#sparql11-query
```
