MediaWiki-API-Hilfe
Dies ist eine automatisch generierte MediaWiki-API-Dokumentationsseite.
Dokumentation und Beispiele: https://www.mediawiki.org/wiki/API/de
list=pageswithprop (pwp)
- Dieses Modul erfordert Leserechte.
- Dieses Modul kann als Generator verwendet werden.
- Quelle: MediaWiki
- Lizenz: GPL-2.0+
List all pages using a given page property.
Parameter:
- pwppropname
Page property for which to enumerate pages (action=query&list=pagepropnames returns page property names in use).
- Dieser Parameter ist erforderlich.
- pwpprop
Which pieces of information to include:
- ids
- Fügt die Seitenkennung hinzu.
- title
- Adds the title and namespace ID of the page.
- value
- Adds the value of the page property.
- Werte (mit | trennen oder Alternative): ids, title, value
- Standard: ids|title
- pwpcontinue
Falls weitere Ergebnisse verfügbar sind, dies zum Fortfahren verwenden.
- pwplimit
Die maximale Anzahl zurückzugebender Seiten.
- Nicht mehr als 500 (5.000 für Bots) erlaubt.
- Typ: Ganzzahl oder max
- Standard: 10
- pwpdir
In welche Richtung sortiert werden soll.
- Einer der folgenden Werte: ascending, descending
- Standard: ascending
Beispiele:
- List the first 10 pages using
{{DISPLAYTITLE:}}
. - api.php?action=query&list=pageswithprop&pwppropname=displaytitle&pwpprop=ids|title|value [in Spielwiese öffnen]
- Get additional information about the first 10 pages using
__NOTOC__
. - api.php?action=query&generator=pageswithprop&gpwppropname=notoc&prop=info [in Spielwiese öffnen]