Following the examples in the page https://www.mediawiki.org/wiki/Wikidata_Query_Service/User_Manual/MWAPI#Examples, I try to get the list of articles created by a user inside SPARQL. I've tried the following request :
SELECT ?title WHERE {
SERVICE wikibase:mwapi {
bd:serviceParam wikibase:endpoint "fr‧wikipedia.org";
wikibase:api "Generator";
mwapi:generator "usercontribs";
mwapi:user "PAC2";
mwapi:show "new";.
?title wikibase:apiOutput mwapi:title.
}
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
But this doesn't work. Is it possible to do it or not ?