query-1f7b017d354d20505cba2e7327b45b16
All instances of the class "link" (Q1760728), recursively that have Dowker-Thistlethwaite names
SELECT DISTINCT ?item ?itemLabel ?dt_name ?knotinfo_id ?itemDescription ?knotatlas_id ?alexanderbriggs ?jones_polynomial
WHERE {
?item wdt:P31 ?sub0 .
?sub0 (wdt:P279)* wd:Q1760728 .
?item wdt:P8416 ?dt_name
OPTIONAL{?item wdt:P8426 ?knotatlas_id .} # Knot Atlas ID
OPTIONAL{?item wdt:P8427 ?knotinfo_id .}
OPTIONAL{?item wdt:P6432 ?alexanderbriggs .} # Alexander-Briggs notation
OPTIONAL{?item wdt:P5352 ?jones_polynomial .} # Jones polynomial
SERVICE wikibase:label { bd:serviceParam wikibase:language "en,en" }
}
ORDER BY ASC(?item) LIMIT 10000
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
# All instances of the class "link" (Q1760728), recursively that have Dowker-Thistlethwaite names
SELECT DISTINCT ?item ?itemLabel ?dt_name ?knotinfo_id ?itemDescription ?knotatlas_id ?alexanderbriggs ?jones_polynomial
WHERE {
?item wdt:P31 ?sub0 .
?sub0 (wdt:P279)* wd:Q1760728 .
?item wdt:P8416 ?dt_name
OPTIONAL{?item wdt:P8426 ?knotatlas_id .} # Knot Atlas ID
OPTIONAL{?item wdt:P8427 ?knotinfo_id .}
OPTIONAL{?item wdt:P6432 ?alexanderbriggs .} # Alexander-Briggs notation
OPTIONAL{?item wdt:P5352 ?jones_polynomial .} # Jones polynomial
SERVICE wikibase:label { bd:serviceParam wikibase:language "en,en" }
}
ORDER BY ASC(?item)
LIMIT 10000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v6("?alexanderbriggs"):::projected
v3("?dt_name"):::projected
v1("?item"):::projected
v7("?jones_polynomial"):::projected
v4("?knotatlas_id"):::projected
v5("?knotinfo_id"):::projected
v2("?sub0")
c3(["wd:Q1760728"]):::iri
c10(["bd:serviceParam"]):::iri
c12(["en,en"]):::literal
v1 --"wdt:P31"--> v2
v2 --"wdt:P279"--> c3
v1 --"wdt:P8416"--> v3
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P8426".-> v4
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P8427".-> v5
end
subgraph optional2["(optional)"]
style optional2 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P6432".-> v6
end
subgraph optional3["(optional)"]
style optional3 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P5352".-> v7
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c10 --"wikibase:language"--> c12
end