Ajuda API da MediaWiki
Esta é uma página de documentação API do MediaWiki gerada automaticamente.
Documentação e exemplos: https://www.mediawiki.org/wiki/API
list=allfileusages (af)
- This module requires read rights.
- This module can be used as a generator.
- Fonte: MediaWiki
- Licença: GPL-2.0+
Lista todas as utilizações de arquivo, incluindo os não-existentes.
Parâmetros:
- afcontinue
When more results are available, use this to continue.
- affrom
O título do arquivo a partir do qual começar a enumerar.
- afto
O título do arquivo onde parar de enumerar.
- afprefix
Search for all file titles that begin with this value.
- afunique
Only show distinct file titles. Cannot be used with afprop=ids. When used as a generator, yields target pages instead of source pages.
- Tipo: boolean (detalhes)
- afprop
Which pieces of information to include:
- ids
- Adds the page IDs of the using pages (cannot be used with afunique).
- title
- Adiciona o título do arquivo.
- Valores (separar com |): ids, title
- Padrão: title
- aflimit
Quantos itens retornar.
- No more than 500 (5 000 for bots) allowed.
- Tipo: inteiro ou max
- Padrão: 10
- afdir
The direction in which to list.
- Um dos seguintes valores: ascending, descending
- Padrão: ascending
Exemplos:
- List file titles, including missing ones, with page IDs they are from, starting at B.
- api.php?action=query&list=allfileusages&affrom=B&afprop=ids|title [abrir na página de testes]
- Listar títulos únicos de arquivos
- api.php?action=query&list=allfileusages&afunique=&affrom=B [abrir na página de testes]
- Gets all file titles, marking the missing ones.
- api.php?action=query&generator=allfileusages&gafunique=&gaffrom=B [abrir na página de testes]
- Obter as páginas contendo os arquivos
- api.php?action=query&generator=allfileusages&gaffrom=B [abrir na página de testes]