<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ar">
	<id>https://3rabica.org/index.php?action=history&amp;feed=atom&amp;title=%D9%88%D8%AD%D8%AF%D8%A9%3AWikidataIdentifiers</id>
	<title>وحدة:WikidataIdentifiers - تاريخ المراجعة</title>
	<link rel="self" type="application/atom+xml" href="https://3rabica.org/index.php?action=history&amp;feed=atom&amp;title=%D9%88%D8%AD%D8%AF%D8%A9%3AWikidataIdentifiers"/>
	<link rel="alternate" type="text/html" href="https://3rabica.org/index.php?title=%D9%88%D8%AD%D8%AF%D8%A9:WikidataIdentifiers&amp;action=history"/>
	<updated>2026-06-06T05:19:58Z</updated>
	<subtitle>تاريخ التعديل لهذه الصفحة في الويكي</subtitle>
	<generator>MediaWiki 1.43.7</generator>
	<entry>
		<id>https://3rabica.org/index.php?title=%D9%88%D8%AD%D8%AF%D8%A9:WikidataIdentifiers&amp;diff=1928&amp;oldid=prev</id>
		<title>عبد العزيز: أنشأ الصفحة ب&#039;-- Functions for use in retrieving Wikidata for use in templates that deal with identifiers -- getIdentifierQualifier returns the value of a qualifier for an Identifier...&#039;</title>
		<link rel="alternate" type="text/html" href="https://3rabica.org/index.php?title=%D9%88%D8%AD%D8%AF%D8%A9:WikidataIdentifiers&amp;diff=1928&amp;oldid=prev"/>
		<updated>2020-04-24T13:53:14Z</updated>

		<summary type="html">&lt;p&gt;أنشأ الصفحة ب&amp;#039;-- Functions for use in retrieving Wikidata for use in templates that deal with identifiers -- getIdentifierQualifier returns the value of a qualifier for an Identifier...&amp;#039;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;صفحة جديدة&lt;/b&gt;&lt;/p&gt;&lt;div&gt;-- Functions for use in retrieving Wikidata for use in templates that deal with identifiers&lt;br /&gt;
-- getIdentifierQualifier returns the value of a qualifier for an Identifier&lt;br /&gt;
&lt;br /&gt;
p = {}&lt;br /&gt;
&lt;br /&gt;
-- getIdentifierQualifier returns the value of a qualifier for an Identifier&lt;br /&gt;
-- such as &amp;#039;Art UK artist ID&amp;#039;, P1367&lt;br /&gt;
-- the assumption is that one value exists for the property&lt;br /&gt;
-- and only one qualifier exists for that value&lt;br /&gt;
-- Constraint violations for P1367 are at:&lt;br /&gt;
-- https://www.wikidata.org/wiki/Wikidata:Database_reports/Constraint_violations/P1367#Single_value&lt;br /&gt;
p.getIdentifierQualifier = function(frame)&lt;br /&gt;
	local propertyID = mw.text.trim(frame.args[1] or &amp;quot;&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
	-- The PropertyID of the qualifier&lt;br /&gt;
	-- whose value is to be returned is passed in named parameter |qual=&lt;br /&gt;
	local qualifierID = frame.args.qual&lt;br /&gt;
	&lt;br /&gt;
	-- Can take a named parameter |qid which is the Wikidata ID for the article.&lt;br /&gt;
	-- This will not normally be used because it&amp;#039;s an expensive call.&lt;br /&gt;
	local qid = frame.args.qid&lt;br /&gt;
	if qid and (#qid == 0) then qid = nil end&lt;br /&gt;
&lt;br /&gt;
	local entity = mw.wikibase.getEntityObject(qid)&lt;br /&gt;
	local props&lt;br /&gt;
	if entity and entity.claims then&lt;br /&gt;
		props = entity.claims[propertyID]&lt;br /&gt;
	end&lt;br /&gt;
	if props then&lt;br /&gt;
		-- Check that the first value of the property is an external id&lt;br /&gt;
		if props[1].mainsnak.datatype == &amp;quot;external-id&amp;quot; then&lt;br /&gt;
			-- get any qualifiers of the first value of the property&lt;br /&gt;
			local quals = props[1].qualifiers&lt;br /&gt;
			if quals and quals[qualifierID] then&lt;br /&gt;
				-- check what the dataype of the first qualifier value is&lt;br /&gt;
				-- if it&amp;#039;s quantity return the amount&lt;br /&gt;
				if quals[qualifierID][1].datatype == &amp;quot;quantity&amp;quot; then&lt;br /&gt;
					return tonumber(quals[qualifierID][1].datavalue.value.amount)&lt;br /&gt;
				end&lt;br /&gt;
				-- checks for other datatypes go here:&lt;br /&gt;
				&lt;br /&gt;
			end&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>عبد العزيز</name></author>
	</entry>
</feed>