How to set the schema correctly based on the query text when using tMDMRestInput - 7.3

MDM data processing

Version
7.3
Language
English
Product
Talend Data Fabric
Talend MDM Platform
Module
Talend MDM Server
Talend MDM Web UI
Talend Studio
Content
Data Governance > Third-party systems > MDM components > MDM data processing components
Data Quality and Preparation > Third-party systems > MDM components > MDM data processing components
Design and Development > Third-party systems > MDM components > MDM data processing components
Last publication date
2024-02-21

When using the component tMDMRestInput, you can use the query language to narrow down the data records to be retrieved. Based on the query, you need to set the schema correctly for the retrieved data.

For more information about the MDM query language and REST data access, see https://help.talend.com/r/en-US/7.3/mdm-query-language.

You can also find more information about the MDM query language and REST data access in Talend Help Center (https://help.talend.com).

Query cases

  • When a query only counts how many results are returned by the query, you need to define one and only one column count in the schema.

  • When a query gets a metadata field, you need to define a column the same name as the metadata field in the schema.

  • When a query gets one or more fields, you need to define one or more columns whose names are the same as the returned fields in the schema.

  • When a query uses an alias, you need to define a column the same name as the alias field in the schema.

For example, if a query text gets the following fields, you need to define columns in the schema correspondingly: id, price, timestamp, taskid and productname.


 "{
  'select': {
        'from': ['Product'],
        'fields': [
               {'field': 'Product/Id'},
               {'field': 'Product/Price'},
               {'metadata': 'timestamp'},
               {'metadata': 'task_id'},
               {'alias' : [{'name' : 'ProductName'}, {'field': 'Product/Name'}]}
                  ]
             }
}"