Skip to content

Lol query common fields

Ulrich Wohlfeil requested to merge lol_query_common_fields into master

I think it is useful to have the common information from the Tag Archive and ObjectType available in each result record set.

Following Mapping:

yield_result['OBJECT_FOLDER_TYPE_ID'] = archive.attributes['id']
yield_result['OBJECT_TYPE_ID'] = objecttype.attributes['id']
yield_result['OBJECT_MAINTYPE'] = objecttype.attributes['maintype']
yield_result['OBJECT_COTYPE'] = objecttype.attributes['cotype']
yield_result['OBJECT_INTERNAL_NAME'] = objecttype.attributes['internal_name']
yield_result['OBJECT_TYPE'] = objecttype.attributes['type']
yield_result['OBJECT_TYPE'] = objecttype.attributes['table']

Based on this Attributes:

	<Archive name="Ordner" id="1" osguid="119E0A3852F544A99923BCA052156571">
		<ObjectType name="Ordner" id="1" maintype="0" cotype="1" osguid="119E0A3852F544A99923BCA052156571" internal_name="Folder" type="FOLDER" table="stamm2">

Merge request reports