Movatterモバイル変換


[0]ホーム

URL:


Wikipedia

Module:Wd/doc

This is adocumentationsubpage forModule:Wd.
It may contain usage information,categories and other content that is not part of the original module page.
WarningThis Lua module is used onapproximately 1,780,000 pages, or roughly 3% of all pages.
To avoid major disruption and server load, any changes should be tested in the module's/sandbox or/testcases subpages, or in your ownmodule sandbox. The tested changes can be added to this page in a single edit. Consider discussing changes on thetalk page before implementing them.
You might want to use one of the user-friendly wrapper templates{{Wikidata}} and{{WikidataOI}} instead of invoking this module directly.
For the module that should be used in|datax= parameters of infobox templates instead of this module, seeModule:WikidataIB.
For a version of this template with an opt-in toggle, see{{WikidataOI}}.


This module is intended to fetch data fromWikidata with or without a link to the connected Wikipedia article and with many other features.

Usage

edit

The general structure of a call to this module is as follows. Note that the basic structure consists of positional commands, flags and arguments, which all have a fixed position.

{{#invoke:wd|command1|flag1a|flag1b|flag1c|command2|flag2a|flag2b|flag2c|flag0a|flag0b|flag0c|arg1|arg2|arg3}}

Use differentcommands to get different kinds of values from Wikidata. At least one command must be given and multiple commands can be combined into one call as shown above (in any order, more than two is also possible), but this only applies to commands from theclaim class; calls containing a command from thegeneral class cannot contain any other command. Each command can be followed by any number ofcommand flags, which are optional and can be used to tweak the output generated by that command.

The commands and their flags may be followed by any number ofconfiguration flags, which are also optional and affect the selection of data and the module's behaviour in general. The call is closed with thepositional arguments, which may be required depending on the given command(s). Somenamed arguments (i.e. name-value pairs) also exist, as well as a set of named flags foradvanced usage that can be used to change the way the fetched values are merged together into the output.

This module was designed to provide the basic needs for fetching data from Wikidata, but a lot can be achieved through different combinations of calls. For convenience, such combinations could be wrapped into new templates that serve a specific need. See also the section oncommon use cases below for some examples of useful "building blocks". Likewise, the functionality of this module can be extended by creating wrapper templates that use themain command provided by this module (just like{{WikidataOI}} does).

Common use cases

edit

Below follows a list of common use cases. In the future, shortcut commands may be implemented that are equivalent to these calls for convenience.

CallUse case
{{#invoke:wd|label|raw}}Returns the Q-identifier of the Wikidata item connected to the current page (e.g. "Q55").
{{#if:{{#invoke:wd|label|raw}}|...}}Performs a check to determine if the current page has a Wikidata item.

Note that this statement relies on a returned value that is either empty or non-empty and that theraw flag is important to include. Without this flag, an existing item's regular label would be returned which could be empty, giving an undesired result. If the flag is given on the other hand, then a non-empty Q-identifier is always returned if an item exists and an empty value if an item does not exist.

Commands

edit

The commands (command1,command2, ...) determine what kind of values are returned. One call can only contain commands from a single class.

Claim class

edit

The claim class commands can be combined, meaning that multiple commands of different types from this class can be given at one time (see above for usage).

Combine multiple commands into one call to this module, instead of making multiple calls to this module with one command each, to be sure that all the returned pieces of information belong to each other (see also the examples below).

TypeCommandReturnsBasic usageDescription
Ipropertyfirst match[a]{{#invoke:wd|property|P1}}Returns the requested property – or list of properties – from the current item-entity or from a given entity.

This command can be given only once in one call.

propertiesall matches{{#invoke:wd|properties|P1}}
IIqualifierfirst match[b]{{#invoke:wd|qualifier|P1|P2}}Returns the requested qualifier – or list of qualifiers – from the given property of the current item-entity or of a given entity.

Unlike the other claim class commands, this command can be given multiple times to retrieve different qualifiers in one call.

qualifiersall matches{{#invoke:wd|qualifiers|P1|P2}}
IIIreferencefirst match[b]{{#invoke:wd|reference|P1}}Returns a reference – or list of references – from the given property of the current item-entity or of a given entity.[c]

This command can be given only once in one call.

referencesall matches{{#invoke:wd|references|P1}}
  1. ^Returns only a single value instead of multiple (if multiple claims or statements match). The returned value isthe first match found from the best-ranked claims.
  2. ^abReturns only a single value instead of multiple for each matching claim. To get at most one value in total in case theproperty command is not also used, additionally use thesingle configuration flag.
  3. ^Seethe section on references for details.

General class

edit

The general class commands cannot be combined.

TypeCommandReturnsBasic usageDescription
Ilabel{{#invoke:wd|label}}Returns the label of the current item-entity or of a given entity if present.
IItitle{{#invoke:wd|title}}Returns the title of the page connected to the current item-entity or to a given item-entity if such page exists.
IIIdescription{{#invoke:wd|description}}Returns the description of the current item-entity or of a given entity if present.
IValiasfirst match[a]{{#invoke:wd|alias}}Returns an alias – or list of aliases – of the current item-entity or of a given entity if present.
aliasesall matches{{#invoke:wd|aliases}}
Vbadgefirst match[a]{{#invoke:wd|badge}}Returns a badge – or list of badges – for the page connected to the current item-entity or to a given item-entity if such page exists.
badgesall matches{{#invoke:wd|badges}}
  1. ^abReturns only a single value instead of multiple (if multiple values are present).

Flags

edit

The following (optional) flags are available which can be used to alter this module's behaviour. They must be given after the (first)command and before thepositional arguments. For convenience, empty flags (i.e.||) are allowed and will simply be ignored.

Command flags

edit

These flags (flag1*,flag2*, ...) apply to the command that precedes them directly.

FlagDescription
rawReturns the raw value if applicable.

If this flag is used with item or property datatypes, then this will return the Q-identifier or P-identifier instead of the regular label.

For quantity datatypes, this flag will strip off any units of measurement, unless theunit flag is also given in which case the raw unit of measurement (its Q-identifier) will be returned.

If this flag is used with time datatypes, then the returned date will be in the format ofyyyy-mm-dd (e.g.1731-02-11), oryyyy-mm, oryyyy depending on the date's precision. Dates in the Julian calendar stored with a precision of days through millenniums will have/Julian attached to the output (e.g.1731-02-11/Julian, which may be split off using the{{#titleparts}} parser function).

If it is used with globe coordinate datatypes, then it replaces the various symbols with forward slashes in the returned value (e.g.52/5/3/N/4/19/3/E, which may be split into parts using the{{#titleparts}} parser function).

linkedCreates a link to the Wikipedia article that is connected to the property or qualifier if it exists. Also links units of measurement that may be appended to values.

If this parameter is omitted, then the plain property or qualifier value will be returned.

short[EXPENSIVE] Returns theshort name(P1813) of any entity returned if they have one attached. If that is not the case, then the default behaviour of returning the entity's label will occur.
multilanguageReturns monolingual text values in any available language, not just the current wiki's language.
unitReturns only the unit of measurement for quantity datatypes.

Configuration flags

edit

These flags (flag0*) are general configuration flags and can be given anywhere after the firstcommand (but before thepositional arguments).

FlagDescriptionCommand class
Combination of:preferredSets a rank constraint for the selected claim(s).

The first three set the ranks for which claim(s) will be selected. They can optionally be followed by a+ or a-, e.g.normal+ orpreferred-, where the first selects claims with a 'normal' rankor higher and the second selects claims with a 'preferred' rankor lower. To get claims of all ranks, usepreferred- ordeprecated+.

If thebest flag is given additionally, then only the claims that have the highest rank amongst the selected claims will be returned.

The default isnormal+|best (so by default claims with a 'deprecated' rank are never returned).

Output is always sorted from highest rank to lowest (regardless of any of these flags being set).

claim
normal
deprecated
best
Combination of:futureSets a time constraint for the selected claim(s). Uses the claims' qualifiers ofstart time(P580) andend time(P582) to determine if the claim is valid for the selected time period(s).

The default isfuture|current|former (so by default claims that are valid for any time period are returned), except whendate= is given (see below) in which case the default iscurrent.

claim
current
former
mdyReturns date values in month-day-year order instead of day-month-year order.claim
singleReturns only a single claim instead of multiple (if multiple claims match). Has no effect if theproperty/properties command is given, in which case this flag would be redundant.claim
sourcedOnly returns claims that have at least one non-empty reference. (References having onlyignored parameters are considered empty.)claim
One of:editAdds a clickable icon after the output that may be used by readers to edit the returned claim on Wikidata.

Ifedit@end is used, then the icon will be placed at the end of the line for neat alignment in infoboxes.

claim,general
edit@end

Arguments

edit

The arguments determine the sources from which all the returned values are fetched.

Positional arguments

edit

The following table shows the available positional arguments (arg*) in their fixed order. For each command, the applicable set of arguments is marked. If multiple commands are given, then the applicable set is the union of the individual sets. For instance, if the commandsproperties andqualifiers have been given, then at least both the argumentsproperty_id andqualifier_id should be given as well.

More than onequalifier/qualifiers command can be given. The order in which these commands with their flags are given matches the order in which the respectivequalifier_id arguments are given.

(required)(optional)(optional)(required)(optional)(required)(required)
{{#invoke:wdcommandsflagsentity_idproperty_idraw_valuequalifier_idqualifier_id}}
label,title,
description,
alias/aliases,
badge/badges
property/properties
reference/references
qualifier/qualifiers
qualifier/qualifiers(optional 2nd, 3rd, etc.)

Below follows a description of all positional arguments.

ArgumentDescription
entity_id

(optional)

[EXPENSIVE]Q-identifier of the item-entity to be accessed (e.g.Q55),P-identifier (or an availablealias) of the property-entity to be accessed preceded by theProperty: prefix (e.g.Property:P38), orpage title of the Wikipedia article whose connected item-entity is to be accessed preceded by:, a prefixed colon (e.g.:Netherlands).

In case of thegeneral class commands, theProperty: prefix may be omitted for P-identifiers (e.g.P38).

If this parameter is omitted, then the item-entity connected to the current page will be used (except wheneid= orpage= is given,see below). If this parameter is given, but empty (i.e.||), then due to its position it will be interpreted as anempty flag and thus be ignored, giving the same result as if it were omitted. See also thenamed argumentseid= andpage= below that can be used to give an entity-ID or page title too, but without the item-entity connected to the current page being used as a default.

property_idP-identifier (or an availablealias) of the property within the entity to be accessed, without theProperty: prefix (e.g.P35).
raw_value

(optional)

Either theQ-identifier equal to the property value (e.g.Q29574) or aliteral value (i.e. string or quantity etc.,no entity label) equal to the raw property value of the particular claim to be accessed.

Dates as literal values must be formattedyyyy-mm-dd (e.g.1731-02-11) for dates with a precision of days,yyyy-mm (e.g.1731-02) for dates with a precision of months, andyyyy (e.g.1731) for dates of lesser precision. Dates BCE require a minus sign in front of the year (e.g.-2950-01-31). Dates stored in the Julian calendar must have/Julian attached to the end (e.g.1731-02-11/Julian). Decades like the 2010s must be given as2010 (but the 2010s BCE as-2019), centuries like the 20th century as1901 (but the 20th century BCE as-2000), and millenniums like the 3rd millennium as2001 (but the 3rd millennium BCE as-3000).

Globe coordinates as literal values must be formatted with forward slashes (i.e./) between the parts and no symbols (e.g.52/5/3/N/4/19/3/E)without any spaces or leading zeros.

The special type 'no value' can be given by entering the empty string (i.e.||) and the special type 'unknown value' can be given by entering a single underscore (i.e.|_|). To get a literal underscore, escape it by placing a backslash\ directly in front of it (i.e.\_); the same holds for a literal backslash (i.e.\\).

To get a literal vertical bar|, use{{!}} or|.

If this parameter is omitted, then all claims (matching any other constraints) within the property will be accessed.

qualifier_idP-identifier (or an availablealias) of the qualifier within the entity to be accessed, without theProperty: prefix (e.g.P580).


Named arguments

edit

Below follows a description of all named arguments, which are name-value pairs (i.e.|name=value). These are all optional and can be given anywhere after the first command.

ArgumentDescriptionCommand class
eid=[EXPENSIVE] This argument can be used to give theQ-identifier (e.g.|eid=Q55) orP-identifier (or an availablealias) of the entity to be accessed. It offers the same functionality as thepositional argumententity_id, with one difference: if the argument is given but its value is left empty (i.e.|eid=), then no entity is accessed at all instead of the item-entity connected to the current page. This is useful in some cases where a variable entity-ID is expected, but where the item-entity connected to the current page should not be accessed as the default.

Also, theProperty: prefix may be omitted for P-identifiers (e.g.|eid=P38) for all commands.

This argument only has effect if the positional argumententity_id is omitted.

claim,general
page=[EXPENSIVE] This argument can be used to give thepage title (e.g.|page=Netherlands) of the Wikipedia article whose connected item-entity is to be accessed. It behaves similar to the named argumenteid= and can be used instead of thepositional argumententity_id (note that no prefixed colon,:, is required). If the argument is given but its value is left empty (i.e.|page=), then no entity is accessed at all instead of the item-entity connected to the current page.

This argument only has effect if the positional argumententity_id and the named argumenteid= are omitted.

claim, general
date=This argument can be used to set a particular date (e.g.|date=1731-02-11) relative to which claim matching using thefuture,current andformer flags is done, instead of relative to today. It overrides the default of these flags tocurrent so that by default only claims that were valid at the given date are returned (based on the claims' qualifiers ofstart time(P580) andend time(P582)).

The date value must be formattedyyyy-mm-dd (e.g.1731-02-11),yyyy-mm (e.g.1731-02) oryyyy (e.g.1731).

claim
<qualifier>=The<qualifier> is a placeholder for a set of arguments that determine which claims should be accessed based on qualifier value, analogous to the pair ofpositional argumentsproperty_id andraw_value (that determine access based on property value).

As such,<qualifier> is any qualifier'sP-identifier (or an availablealias) without theProperty: prefix (e.g.P518). Its value is either theQ-identifier equal to one of the qualifier values (e.g.Q27561) or aliteral value (i.e. string or quantity etc.,no entity label) equal to one of the raw qualifier values of the particular claim to be accessed. The value format is the same as for the positional argumentraw_value. The special type 'no value' given by the empty string also matches the total absence within the claim of the particular qualifier.

Example:|P518=Q27561

Multiple arguments of this type can be given to match multiple qualifier values simultaneously for each claim.

claim

Property aliases

edit

Property aliases are other names for P-identifiers that can be used instead. The following property aliases (which arecase-sensitive) are currently available:

Aliastranslates
to
P-identifier
coordP625
imageP18
authorP50
authorNameStringP2093
publisherP123
importedFromP143
wikimediaImportURLP4656
statedInP248
pagesP304
languageP407
hasPartP527
publicationDateP577
startTimeP580
endTimeP582
chapterP792
retrievedP813
referenceURLP854
sectionVerseOrParagraphP958
archiveURLP1065
titleP1476
formatterURLP1630
quoteP1683
shortNameP1813
definingFormulaP2534
archiveDateP2960
inferredFromP3452
typeOfReferenceP3865
columnP3903
subjectNamedAsP1810
wikidataPropertyP1687

References

edit

When either thereference or thereferences command is used and a reference is encountered (in Wikidata), the module checks if the reference contains animported from Wikimedia project(P143),inferred from(P3452) orWikimedia import URL(P4656) property. In the case one of these properties is present, the whole reference is ignored (i.e. it is treated as if it wasn't present).

Else, the module attempts to display the reference using the{{Cite web}} template. The reference has to have areference URL(P854) property. The below table shows the mapping of Wikidata properties to parameters of Cite web.

Wikidata propertyParameter of Cite webNotes
archive date(P2960)archive-date
archive URL(P1065)archive-url
author(P50)author/authorNN can be 1, 2, 3...
author name string(P2093)
language of work or name(P407)languageIgnored when the same as the local language.
page(s)(P304)pages
publication date(P577)date
publisher(P123)publisher
quotation(P1683)quote
reference URL(P854)url
retrieved(P813)access-date
section, verse, paragraph, or clause(P958)at
stated in(P248)website
subject named as(P1810)titleUsed only whentitle(P1476) is not present, but a URL (either fromreference URL(P854) or from an external identifier, as described below) is, otherwise ignored.
title(P1476)title

The following properties are ignored:image(P18),type of reference(P3865).

If there is noreference URL(P854) property present in the reference, but a property of the "External identifier"data type is present both in the reference and in theWikidata property(P1687) of the item instated in(P248), a URL is generated from its content and is used in the same manner as a URL given inreference URL(P854).

If there is noreference URL(P854) property, or the reference has unknown properties, the module attempts to display it using the{{Cite Q}} template. Thestated in(P248) property is mandatory. The below table shows the mapping of properties to Cite Q parameters.

Wikidata propertyParameter of Cite QNotes
stated in(P248)1Value supplied to the parameter israw, i.e. it is just the plain QID.
chapter(P792)chapter
column(P3903)at
page(s)(P304)pages
publication date(P577)date
retrieved(P813)access-date
section, verse, paragraph, or clause(P958)section
title(P1476)title
any property of the "External identifier" data typeidThe label ("name") of the property is prepended before its content.

The properties listedunder the first table (in this section) are also ignored when using Cite Q.

A reference could be displayed using Cite Q only if the reference has astated in(P248) property and has only properties listed in the table above. If neither Cite web nor Cite Q could be used to display a reference, an error message with an explanation is returned.

To fix this error, check if the reference has the required properties and doesn't have any unknown properties, as described above. TheWikidata help page on references can also be helpful when sourcing statements.

Advanced usage

edit

The layout of the output from (a combination of) commands that have both a singular and a plural form (e.g.property/properties) can be customized by using a number of named flags, which are name-value pairs (i.e.|flag=value), that can be given anywhere after the first command. The table below shows the available named flags.

To insert a space at the beginning or end of avalue, use an underscore_. To get a literal underscore, escape it by placing a backslash\ directly in front of it (i.e.\_); the same holds for a literal backslash (i.e.\\). To get a literal vertical bar|, use{{!}} or&#124;.

Named flagDefault valueDefault conditionDescription
format=%p[%s][%r]if theproperty/properties commandwas given and thequalifier/qualifiers commandwas not givenThe format of a single claim. The available parameters are as follows.
ParameterDescription
%pThe claim's property value applied by theproperty/properties command.
%q1,%q2,%q3, ...The claim's qualifier value or list of qualifier values applied by the correspondingqualifier/qualifiers command.
%qThe collection of the qualifier values applied by eachqualifier/qualifiers command (i.e.%q1 +%q2 +%q3 + ...). If only onequalifier/qualifiers command was given, then this parameter is equivalent to%q1.
%rThe claim's reference value or list of reference values applied by thereference/references command.
%aThe entity's alias applied by thealias/aliases command.
%bThe entity's page badge applied by thebadge/badges command.
%sThe movable separator placeholder. This is a special parameter that is not applied by a command, but instead is filled automatically between each pair of claims, aliases or badges (if a list of claims, aliases or badges is returned). This is particularly handy in case a claim's reference is returned as well, since it allows the reference to be placed after the punctuation mark as prescribed byWikipedia's manual of style. The default value is a comma (,) and can be overridden with thesep%s flag (see below).

Optional parameters can be given by encapsulating them between square brackets:[...]. All content between the square brackets is only displayed if a value for each optional parameter that has been defined between the same brackets has been found. Optional content can also be nested.

To use two opening square brackets that directly follow each other (i.e.[[), use{{!((}}.

At least one parameter must be given that is not optional, while the%s parameter must always be defined as optional.

To get a literal[,],% or\, escape the character by placing a backslash\ directly in front of it (e.g.\%). See also the description directly above this table for more.

%q[%s][%r]if theproperty/properties commandwas not given and thequalifier/qualifiers commandwas given
%rifonly thereference/references command was given
%p[<spanstyle="font-size:85\%">(%q)</span>][%s][%r]
if theproperty/properties commandwas given and thequalifier/qualifiers commandwas given
%a[%s]if thealias/aliases command was given
%b[%s]if thebadge/badges command was given
sep=_defaultThe fixed separator between each pair of claims, aliases or badges.
ifonly thereference/references command was givenwithout theraw flag
sep%s=,defaultThe movable separator between each pair of claims, aliases or badges. This will be the value of the%s parameter applied to all claims, aliases or badges, except for the last in the list (which can be set with thepunc flag).
;if theproperty/properties commandwas not given and thequalifier/qualifiers commandwas given
sep%q1=,sep%q2=,sep%q3=, ...,_defaultThe separator between each pair of qualifiers of a single claim. These are the value separators for the%q1,%q2,%q3, ... parameters.

If only onequalifier/qualifiers command was given, then thesep%q1 flag is equivalent tosep%q.

sep%q=,_ifexactly onequalifier/qualifiers command was givenThe separator between each set of qualifiers of a single claim. This is the value separator for the%q parameter.

If only onequalifier/qualifiers command was given, then this flag is equivalent tosep%q1.

;_ifmore than onequalifier/qualifiers command was given
sep%r=defaultThe separator between each pair of references of a single claim. This is the value separator for the%r parameter.
_if theraw flagwas given for thereference/references command
punc=defaultA punctuation mark placed at the end of the output. This will be placed on the%s parameter applied to the last claim (or alias or badge) in the list.

This allows the last claim's references to be placed after the punctuation mark when the output is used as part of a sentence.

Examples

edit
Parameters and output typesExampleDescription
Q55 = "Netherlands",P395 = "licence plate code"

[string]

{{#invoke:wd|property|Q55|P395}}

NL
Gets a literal string value.
P395 = "licence plate code"

[string]

{{#invoke:wd|property|P395}}

NL
If the module is transcluded on theNetherlands page (which is linked to Q55), then theQ55 can be omitted.
Q55 = "Netherlands", P395 = "NL"

[string]

{{#invoke:wd|property|eid=Q55|P395}}

NL
An entity-ID can also be given using theeid= argument.
P395 = "NL"

[string]

{{#invoke:wd|property|page=Netherlands|P395}}

NL
A page title can be given instead of an entity-ID using thepage= argument.
Q55 = "Netherlands", P395 = "licence plate code"

[string]

{{#invoke:wd|property|edit|Q55|P395}}

NL  
Adds a clickable icon that may be used to edit the returned value on Wikidata.
Q55 = "Netherlands", P395 = "licence plate code"

[string]

{{#invoke:wd|property|edit@end|Q55|P395}}

NL 
Places the edit icon at the end of the line.
Q55 = "Netherlands",P1082 = "population"

[quantity]

{{#invoke:wd|property|normal+|Q55|P1082}}

17,590,672
Gets a single property value from claims with a 'normal' rank or higher.
Q55 = "Netherlands", P1082 = "population"

[quantity]

{{#invoke:wd|properties|normal+|Q55|P1082}}

17,590,672, 10,026,773, 16,779,575, 16,829,289, 17,000,000, 17,081,507, 17,181,084, 17,282,163, 17,407,585
Gets multiple property values from claims with a 'normal' rank or higher.
Q55 = "Netherlands", P1082 = "population",P585 = "point in time"

[quantity], [time]

{{#invoke:wd|properties|qualifier|normal+|Q55|P1082|P585}}

17,590,672(1 January 2022), 10,026,773(1950), 16,779,575(2013), 16,829,289(26 August 2014), 17,000,000(21 March 2016), 17,081,507(1 January 2017), 17,181,084(1 January 2018), 17,282,163(1 January 2019), 17,407,585(1 January 2020)
Gets a single qualifier value for each claim, additional to the property value.
Q55 = "Netherlands", P1082 = "population", P585 = "point in time"

[quantity], [time], [reference]

{{#invoke:wd|properties|qualifier|references|normal+|Q55|P1082|P585}}

17,590,672(1 January 2022),[1] 10,026,773(1950),[2] 16,779,575(2013),[2] 16,829,289(26 August 2014),[3] 17,000,000(21 March 2016),[4] 17,081,507(1 January 2017),[5] 17,181,084(1 January 2018),[1] 17,282,163(1 January 2019),[1] 17,407,585(1 January 2020)[1]
Gets references for each claim.
Q55 = "Netherlands", P1082 = "population"

[quantity], [reference]

A total of{{#invoke:wd|property|references|Q55|P1082}} people live in the Netherlands.

A total of 17,590,672[1] people live in the Netherlands.
Gets a property with its references.
Q55 = "Netherlands", P1082 = "population"

[quantity], [reference]

The Netherlands has a population of{{#invoke:wd|property|references|Q55|P1082|punc=.}}

The Netherlands has a population of 17,590,672.[1]
Adds a punctuation mark at the end of the output, in front of the references.
Q55 = "Netherlands", P1082 = "population", P585 = "point in time"

[quantity], [time], [reference]

<ul>{{#invoke:wd|properties|qualifier|references|normal+|Q55|P1082|P585|format=<li>%p[%r][<ul><li>%q</li></ul>]</li>}}</ul>

  • 17,590,672[1]
    • 1 January 2022
  • 10,026,773[2]
    • 1950
  • 16,779,575[2]
    • 2013
  • 16,829,289[3]
    • 26 August 2014
  • 17,000,000[4]
    • 21 March 2016
  • 17,081,507[5]
    • 1 January 2017
  • 17,181,084[1]
    • 1 January 2018
  • 17,282,163[1]
    • 1 January 2019
  • 17,407,585[1]
    • 1 January 2020
Returns the output in a custom format.
Q55 = "Netherlands", P1082 = "population", P585 = "point in time"

[time]

{{#invoke:wd|qualifier|normal+|Q55|P1082|P585}}

1 January 2022; 1950; 2013; 26 August 2014; 21 March 2016; 1 January 2017; 1 January 2018; 1 January 2019; 1 January 2020
Gets a single qualifier per claim, by default for multiple matching claims.
Q55 = "Netherlands", P1082 = "population", P585 = "point in time"

[time]

{{#invoke:wd|qualifier|normal+|single|Q55|P1082|P585}}

1 January 2022
To get a single qualifier for only a single claim, give thesingle flag too so that only a single claim will be accessed.
Q55 = "Netherlands", P1082 = "population", P585 = "point in time"

[time]

{{#invoke:wd|qualifier|Q55|P1082|10026773|P585}}

1950
Gets a qualifier from claims for which the (raw) property value matches a given literal value.
Q55 = "Netherlands", P1082 = "population", P585 = "point in time"

[time]

{{#invoke:wd|qualifier|mdy|Q55|P1082|10026773|P585}}

1950
Gets dates in month-day-year order.
Q55 = "Netherlands", P1082 = "population", P585 = "point in time"

[time]

{{#invoke:wd|qualifier|raw|Q55|P1082|10026773|P585}}

1950
Gets a raw date value.
Q55 = "Netherlands", P1082 = "population"

[reference]

{{#invoke:wd|references|Q55|P1082|10026773}}

[2]
Gets the references from a particular claim.
Q55 = "Netherlands", P1082 = "population"

[reference]

{{#invoke:wd|references|raw|Q55|P1082|10026773}}

"CBS StatLine - Bevolking; kerncijfers". Statistics Netherlands. Archived fromthe original on 27 August 2015. Retrieved22 August 2015.
Gets references from a particular claim in their raw form.
Q55 = "Netherlands",P1081 = "Human Development Index"

[quantity], [reference]

{{#invoke:wd|properties|references|normal+|Q55|P1081}}

0.931,[6] 0.787, 0.799, 0.829,[7][6] 0.861,[6] 0.877,[7] 0.891,[6] 0.909,[7] 0.919,[7] 0.920,[7] 0.920,[7] 0.922,[7] 0.834,[6] 0.835,[6] 0.839,[6] 0.864,[6] 0.866,[6] 0.865,[6] 0.867,[6] 0.870,[6] 0.876,[6] 0.879,[6] 0.878,[6] 0.883,[6] 0.886,[6] 0.897,[6] 0.904,[6] 0.906,[6] 0.906,[6] 0.910,[6] 0.921,[6] 0.921,[6] 0.923,[6] 0.924,[6] 0.926,[6] 0.928[6]
Gets properties from each claim with any references they have.
Q55 = "Netherlands", P1081 = "Human Development Index"

[quantity], [reference]

{{#invoke:wd|properties|references|normal+|sourced|Q55|P1081}}

0.931,[6] 0.829,[7][6] 0.861,[6] 0.877,[7] 0.891,[6] 0.909,[7] 0.919,[7] 0.920,[7] 0.920,[7] 0.922,[7] 0.834,[6] 0.835,[6] 0.839,[6] 0.864,[6] 0.866,[6] 0.865,[6] 0.867,[6] 0.870,[6] 0.876,[6] 0.879,[6] 0.878,[6] 0.883,[6] 0.886,[6] 0.897,[6] 0.904,[6] 0.906,[6] 0.906,[6] 0.910,[6] 0.921,[6] 0.921,[6] 0.923,[6] 0.924,[6] 0.926,[6] 0.928[6]
Only gets properties from claims that have at least one reference.
Q55 = "Netherlands",P2855 = "VAT rate",P518 = "applies to part"

[entity label]

{{#invoke:wd|qualifier|Q55|P2855|P518}}

food
Gets a single qualifier value (for each matching claim).
Q55 = "Netherlands", P2855 = "VAT rate", P518 = "applies to part"

[entity label]

{{#invoke:wd|qualifiers|Q55|P2855|P518}}

food, medication, assistive technology, magazine, book, art, antique, hairdresser, hotel, campsite, recreation, sport, water
Gets multiple qualifier values (for each matching claim).
Q55 = "Netherlands", P2855 = "VAT rate", P518 = "applies to part"

[quantity], [entity label]

{{#invoke:wd|properties|qualifiers|Q55|P2855|P518}}

21%, 6%(food, medication, assistive technology, magazine, book, art, antique, hairdresser, hotel, campsite, recreation, sport, water)
Gets multiple property values along with multiple qualifier values.
Q55 = "Netherlands", P2855 = "VAT rate", P518 = "applies to part"

[quantity], [entity label]

{{#invoke:wd|properties|qualifiers|Q55|P2855|P518|sep=_+_|sep%s=|sep%q=_/_}}

21% + 6%(food / medication / assistive technology / magazine / book / art / antique / hairdresser / hotel / campsite / recreation / sport / water)
Returns the output with custom separators.
Q55 = "Netherlands",P35 = "head of state",P580 = "start time",P582 = "end time"

[entity label], [time]

{{#invoke:wd|properties|qualifier|qualifier|normal+|Q55|P35|P580|P582}}

Willem-Alexander of the Netherlands(30 April 2013), Beatrix of the Netherlands(30 April 1980; 30 April 2013), Juliana of the Netherlands(4 September 1948; 30 April 1980), Wilhelmina of the Netherlands(23 November 1890; 4 September 1948), Willem III of the Netherlands(17 March 1849; 23 November 1890), Willem II of the Netherlands(7 October 1840; 17 March 1849), William I of the Netherlands(16 March 1815; 7 October 1840)
Gets two different qualifier values for each claim.
Q55 = "Netherlands", P35 = "head of state", P580 = "start time", P582 = "end time"

[entity label], [time]

{{#invoke:wd|properties|qualifier|qualifier|normal+|Q55|P35|P580|P582|sep%q=_–_}}

Willem-Alexander of the Netherlands(30 April 2013), Beatrix of the Netherlands(30 April 1980 – 30 April 2013), Juliana of the Netherlands(4 September 1948 – 30 April 1980), Wilhelmina of the Netherlands(23 November 1890 – 4 September 1948), Willem III of the Netherlands(17 March 1849 – 23 November 1890), Willem II of the Netherlands(7 October 1840 – 17 March 1849), William I of the Netherlands(16 March 1815 – 7 October 1840)
Returns the output with a custom separator.
Q55 = "Netherlands", P35 = "head of state", P580 = "start time", P582 = "end time"

[entity label], [time]

{{#invoke:wd|properties|qualifier|qualifier|normal+|Q55|P35|P580|P582|format=%p[ <span>(%q1[ – %q2])</span>][%s][%r]}}

Willem-Alexander of the Netherlands(30 April 2013), Beatrix of the Netherlands(30 April 1980 – 30 April 2013), Juliana of the Netherlands(4 September 1948 – 30 April 1980), Wilhelmina of the Netherlands(23 November 1890 – 4 September 1948), Willem III of the Netherlands(17 March 1849 – 23 November 1890), Willem II of the Netherlands(7 October 1840 – 17 March 1849), William I of the Netherlands(16 March 1815 – 7 October 1840)
Returns the output in a custom format instead of with a custom separator.
Q55 = "Netherlands", P35 = "head of state", P580 = "start time", P582 = "end time"

[entity label], [time]

{{#invoke:wd|properties|qualifier|qualifier|normal+|Q55|P35|P580|P582|format=%p[ <span>([<![]--%q2]since [%q2--[]>]%q1[ – %q2])</span>][%s][%r]}}

Willem-Alexander of the Netherlands(since 30 April 2013), Beatrix of the Netherlands(30 April 1980 – 30 April 2013), Juliana of the Netherlands(4 September 1948 – 30 April 1980), Wilhelmina of the Netherlands(23 November 1890 – 4 September 1948), Willem III of the Netherlands(17 March 1849 – 23 November 1890), Willem II of the Netherlands(7 October 1840 – 17 March 1849), William I of the Netherlands(16 March 1815 – 7 October 1840)
To add text only when a certain value is not present, like adding the wordsince if there is no end time, wrap it in between two optional blocks containing HTML comment tags and the relevant parameter (this also prevents the text from being added to the page source).
Q55 = "Netherlands", P35 = "head of state",Q29574 = "Beatrix of the Netherlands", P580 = "start time", P582 = "end time"

[entity label], [time]

{{#invoke:wd|properties|qualifier|raw|qualifier|normal+|Q55|P35|Q29574|P580|P582|format=%p[ <span>(%q1[ – %q2])</span>][%s][%r]}}

Beatrix of the Netherlands(1980-04-30 – 30 April 2013)
Gets a property with qualifiers from claims for which the property matches a given Q-identifier, with one of the qualifier values in its raw form.
Q55 = "Netherlands",P38 = "currency", P518 = "applies to part"

[entity label]

{{#invoke:wd|properties|qualifiers|normal+|current|Q55|P38|P518}}

euro(European Netherlands), United States dollar(Caribbean Netherlands)
Gets claims that are currently valid.
Q55 = "Netherlands", P38 = currency", P518 = "applies to part"

[entity label]

{{#invoke:wd|properties|linked|qualifiers|normal+|current|Q55|P38|P518}}

euro(European Netherlands),United States dollar(Caribbean Netherlands)
Gets claims with linked property values.
Q55 = "Netherlands", P38 = currency", P518 = "applies to part"

[entity label]

{{#invoke:wd|properties|qualifiers|linked|normal+|current|Q55|P38|P518}}

euro(European Netherlands), United States dollar(Caribbean Netherlands)
Gets claims with linked qualifier values.
Q55 = "Netherlands", P38 = currency", P518 = "applies to part"

[entity label]

{{#invoke:wd|properties|linked|short|qualifiers|linked|normal+|current|Q55|P38|P518}}

euro(European Netherlands),US dollar(Caribbean Netherlands)
Gets claims with linked property and qualifier values, with short property values wherever available.
Q55 = "Netherlands", P38 = currency",Q4917 = "United States dollar", P518 = "applies to part"

[entity label]

{{#invoke:wd|qualifiers|normal+|current|Q55|P38|Q4917|P518}}

Caribbean Netherlands
Gets qualifiers from claims for which the (raw) property value matches a given Q-identifier.
Q55 = "Netherlands", P38 = currency", P518 = "applies to part",Q27561 = "Caribbean Netherlands"

[entity label]

{{#invoke:wd|properties|normal+|current|Q55|P38|P518=Q27561}}

United States dollar
Gets properties from claims for which a (raw) qualifier value matches a given Q-identifier.
Q55 = "Netherlands", P38 = currency"

[entity label]

{{#invoke:wd|properties|normal+|former|Q55|P38}}

Dutch guilder
Gets claims that were valid in the past.
Q55 = "Netherlands", P38 = currency"

[entity label]

{{#invoke:wd|properties|raw|normal+|former|Q55|P38}}

Q788472
Gets raw property values.
Q55 = "Netherlands", P38 = currency"

[entity label]

{{#invoke:wd|properties|raw|linked|normal+|former|Q55|P38}}

Q788472
Gets raw property values that are linked to Wikidata.
Q55 = "Netherlands",P1549 = "demonym"

[monolingual text]

{{#invoke:wd|property|Q55|P1549}}

Dutch
Gets a monolingual text value in the current wiki's language.
Q55 = "Netherlands", P1549 = "demonym",P407 = "language of work or name",Q36846 = "Toki Pona"

[monolingual text]

{{#invoke:wd|property|multilanguage|Q55|P1549|P407=Q36846}}

Gets a monolingual text value in any available language.
Q55 = "Netherlands",P2884 = "mains voltage"

[quantity]

{{#invoke:wd|property|Q55|P2884}}

230 volt
Gets a quantity value with its associated unit of measurement.
Q55 = "Netherlands", P2884 = "mains voltage"

[quantity]

{{#invoke:wd|property|linked|Q55|P2884}}

230volt
Gets a quantity value with a linked unit of measurement.
Q55 = "Netherlands", P2884 = "mains voltage"

[quantity]

{{#invoke:wd|property|raw|Q55|P2884}}

230
Gets a raw quantity value.
Q55 = "Netherlands", P2884 = "mains voltage"

[quantity]

{{#invoke:wd|property|unit|Q55|P2884}}

volt
Gets only the unit of measurement.
Q55 = "Netherlands", P2884 = "mains voltage"

[quantity]

{{#invoke:wd|property|unit|raw|Q55|P2884}}

Q25250
Gets the raw unit of measurement.
Q55 = "Netherlands",P625 = "coordinate location"

[globe coordinate]

{{#invoke:wd|property|Q55|P625}}

52°19'N, 5°33'E
Gets a globe coordinate value.
Q55 = "Netherlands", P625 = "coordinate location"

[globe coordinate]

{{#invoke:wd|property|linked|Q55|P625}}

52°19'N, 5°33'E
Gets a linked globe coordinate value.
Q55 = "Netherlands", P625 = "coordinate location"

[globe coordinate]

{{#invoke:wd|property|raw|Q55|P625}}

52/19/N/5/33/E
Gets a raw globe coordinate value.
Q55 = "Netherlands", P625 = "coordinate location"

[globe coordinate]

{{#invoke:wd|property|Q55|coord}}

52°19'N, 5°33'E
A property alias can be used instead of the P-identifier.
Q55 = "Netherlands",P41 = "flag image"

[commons media]

{{#invoke:wd|property|linked|Q55|P41}}

Flag of the Netherlands.svg
Gets a media file name and links to it on Commons.
Q55 = "Netherlands", P41 = "flag image"

[commons media]

{{#invoke:wd|property|raw|Q55|P41|format=\[\[File:%p {{!}} thumb {{!}} left\]\]}}

 
A Commons media file can be included on the page as-is by omitting thelinked andraw flags, but by using theraw flag it can be freely formatted.
Q55 = "Netherlands", P41 = "flag image"

[commons media]

{{#invoke:wd|property|raw|date=1700-05-06|Q55|P41|format=\[\[File:%p {{!}} thumb {{!}} left\]\]}}

 
To get the value of a property that was valid at a given time, thedate= argument can be used.
Q55 = "Netherlands", P41 = "flag image"

[commons media]

{{#invoke:wd|property|raw|date=1700-05-06|former|Q55|P41|format=\[\[File:%p {{!}} thumb {{!}} left\]\]}}

 
The time constraint flags work relatively to the date value given for thedate= argument.
Q915684 = "Lorentz–Lorenz equation",P2534 = "defining formula"

[math]

{{#invoke:wd|property|Q915684|P2534}}

n21n2+2=4π3Nα{\displaystyle {\frac {n^{2}-1}{n^{2}+2}}={\frac {4\pi }{3}}N\alpha } 
Gets a mathematical expression.
Q915684 = "Lorentz–Lorenz equation",P7235 = "in defining formula",P9758 = "symbol represents"

[entity label], [math]

<ul>{{#invoke:wd|properties|qualifier|linked|Q915684|P7235|P9758|format=<li>%q[ (%p)]</li>}}</ul>

Mathematical expressions can be combined with regular text as usual.
Q6256 = "country",P3896 = "geoshape"

[geographic shape]

{{#invoke:wd|property|linked|Q6256|P3896}}

Data:Naturalearthdata.com/admin-0-countries-no-antarctica.map
Gets a geographic shape data file name and links to it on Commons.
Q4917 = "United States dollar"

[entity label]

{{#invoke:wd|label|Q4917}}

United States dollar
Gets an item's label.
Q4917 = "United States dollar"

[entity label]

{{#invoke:wd|label|short|linked|Q4917}}

US dollar
Gets an item's short and linked label.
P38 = currency"

[entity label]

{{#invoke:wd|label|P38}}

currency
Gets a property's label.
P38 = currency"

[entity label]

{{#invoke:wd|label|linked|P38}}

currency
Gets a property's label that is linked to Wikidata.
Q776 = "Utrecht"

[entity label]

{{#invoke:wd|label|Q776}}

Utrecht
Gets an item's label.
Q776 = "Utrecht"

[entity label]

{{#invoke:wd|label|linked|Q776}}

Utrecht
Gets an item's linked label.


[entity label]

{{#invoke:wd|label}}

Utrecht
If the module is transcluded on theUtrecht (province) page (which is linked to Q776), then theQ776 can be omitted.


[entity label]

{{#invoke:wd|label|raw}}

Q776
If just thelabel command with theraw flag is given, then the Q-identifier of the item connected to the current page is returned.


[entity label]

{{#invoke:wd|label|raw|linked}}

Q776
If additionally thelinked flag is given, then the Q-identifier of the item connected to the current page is linked to Wikidata.
Q776 = "Utrecht"

[page title]

{{#invoke:wd|title|Q776}}

Utrecht (province)
Gets the title of the page on the current wiki that is linked to the given item.
Q776 = "Utrecht"

[page title]

{{#invoke:wd|title|linked|Q776}}

Utrecht (province)
Gets the linked title of the page on the current wiki that is linked to the given item.


[page title]

{{#invoke:wd|title}}

Utrecht (province)
If the module is transcluded on theUtrecht (province) page (which is linked to Q776), then theQ776 can be omitted.
Q55 = "Netherlands"

[entity description]

{{#invoke:wd|description|Q55}}

country in Northwestern Europe with territories in the Caribbean
Gets an item's description.


[entity description]

{{#invoke:wd|description}}

country in Northwestern Europe with territories in the Caribbean
If the module is transcluded on theNetherlands page (which is linked to Q55), then theQ55 can be omitted.
Q55 = "Netherlands"

[entity alias]

{{#invoke:wd|alias|Q55}}

Holland
Gets one of an item's aliases.
Q55 = "Netherlands"

[entity alias]

{{#invoke:wd|aliases|Q55}}

Holland, the Netherlands, NL, NED, Nederland, nl, 🇳🇱, Netherlands (after 1945)
Gets all of an item's aliases.
Q55 = "Netherlands"

[entity alias]

{{#invoke:wd|alias|linked|Q55}}

Holland
Gets a linked alias from an item.


[entity alias]

{{#invoke:wd|alias}}

Holland
If the module is transcluded on theNetherlands page (which is linked to Q55), then theQ55 can be omitted.
Q2 = "Earth"

[page badge]

{{#invoke:wd|badges|Q2}}

featured article badge
Gets the badges for the page on the current wiki that is linked to the given item.
Q2 = "Earth"

[page badge]

{{#invoke:wd|badges|raw|Q2}}

Q17437796
Gets the raw badges for the page on the current wiki that is linked to the given item.


[page badge]

{{#invoke:wd|badges}}

featured article badge
If the module is transcluded on theEarth page (which is linked to Q2), then theQ2 can be omitted.
Q28865 = "Python",P548 = "version type",P348 = "software version identifier",

[version], [reference]

{{#invoke:wd|property|reference|edit|Q28865|P548=Q2804309|P348}}

3.11.3[8]  
GetPython's latest stable release version with its references. You may want to useP548=Q2122918 to get the latest preview release version.

Example references

edit
  1. ^abcdefghij"Bevolking; kerncijfers, 1950-2022".
  2. ^abcde"CBS StatLine - Bevolking; kerncijfers". Statistics Netherlands. Archived fromthe original on 27 August 2015. Retrieved22 August 2015.
  3. ^ab"CBS StatLine - Bevolking; kerncijfers". Archived fromthe original on 3 September 2014. Retrieved26 August 2014.
  4. ^ab"Nederland telt 17 miljoen inwoners". 21 March 2016.
  5. ^ab"Bevolking; kerncijfers, 1950-2022". Retrieved18 March 2023.
  6. ^abcdefghijklmnopqrstuvwxyzaaabacadaeafagahaiajakalamanaoapaqarasatauavawaxayazbabbbcbd"Human Development Data (1990-2017)".Human Development Report. Archived fromthe original on 30 December 2018.
  7. ^abcdefghijklmn"Netherlands". Archived fromthe original on 2 February 2017.
  8. ^"It's time for another set of Python releases! Python 3.11.3, 3.10.11 and 3.12 alpha 7 are now available". 5 April 2023. Retrieved6 April 2023.

TemplateData

edit

This template fetches data from the centralized knowledge base Wikidata. To edit the data, click on "Wikidata item" in the left sidebar.

Template parameters

ParameterDescriptionTypeStatus
No parameters specified

See also

edit
  • {{Wikidata}}, a user-friendly wrapper template for this module.
  • {{WikidataOI}}, a wrapper template for this module that adds an opt-in toggle.
  • {{Pageid to title}}, to get a page title using its local page id, rather than Wikidata



[8]ページ先頭

©2009-2025 Movatter.jp