query-f69df2a4e48d7b97a7a05d8c1f86a951

rq turtle/ttl

(and other properties) on a verb.(P5186)conjugation class can be useful to quickly add User:Envlh/FrenchLexemes.js, splitting them on second and third groups. The user script (P5186)conjugation class After emptying previous lists, you have to manually work on all verbs missing

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX dct: <http://purl.org/dc/terms/>
SELECT ?lexeme (GROUP_CONCAT(?lemma; separator = ', ') AS ?lemmas) (IRI(CONCAT('https://fr.wiktionary.org/wiki/Conjugaison:français/', ?lemmas)) AS ?wkt) {
  ?lexeme dct:language wd:Q150 ; wikibase:lexicalCategory wd:Q24905 ; wikibase:lemma ?lemma .
  FILTER NOT EXISTS { ?lexeme wdt:P5186 [] }
}
GROUP BY ?lexeme
ORDER BY ?lemmas

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?lemma"):::projected v4("?lemmas"):::projected v2("?lexeme"):::projected v4("?wkt") a1((" ")) c5(["wd:Q24905"]):::iri c3(["wd:Q150"]):::iri f0[["not "]] subgraph f0e0["Exists Clause"] e0v1 --"wdt:P5186"--> e0a1 e0v1("?lexeme"):::projected e0a1((" ")):::projected end f0--EXISTS--> f0e0 f0 --> v2 f0 --> c1 f0 --> a1 v2 --"wdt:P5186"--> a1 v2 --"dct:language"--> c3 v2 --"wikibase:lexicalCategory"--> c5 v2 --"wikibase:lemma"--> v3 bind2[/"?lemma"/] v3 --o bind2 bind2 --as--o v4 bind3[/"concat('https://fr.wiktionary.org/wiki/Conjugaison:français/',?lemmas)"/] v4 --o bind3 bind3 --as--o v4