I am trying to make use of wikipedia API to retrieve links that has Template:Persondata embedded in it from an article in single call.
e.g. all people's articles that the article "George Clooney" links to.
as workaround:
I am getting the list of articles using prop=links param
http://en.wikipedia.org/w/api.php?action=query&prop=links&titles=George_Clooney&pllimit=500&plnamespace=0&format=json
then checking the templates of each article to see if it contains Template:Persondata.
http://en.wikipedia.org/w/api.php?action=query&prop=templates&titles=*article_title*&tllimit=500&format=json
I know that by using list=embeddedin query we can get all articles of specific Template but it is used to filter all articles in Wikipedia.
is it possible to use something similar to filter a list of articles I am getting in step 1? or is there a better way?
Thanks in advance