query-519c0ee894d683240c1a4589b7c6753a
Using STR results in "Query timeout limit reached"I've been using the following query to build minimal working examples because of its simplicity.
Use at
- https://query.wikidata.org/sparql
SELECT ?a ?b ?c {
?a ?b ?c.
}
LIMIT 1
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?a"):::projected
v2("?b"):::projected
v3("?c"):::projected
v1 -->v2--> v3