List of questions
Related questions
Question 166 - MCD - Level 1 discussion
A Mule project contains a DataWeave module like WebStore.dwl that defines a function named loginUser. The module file is located in the project's src/main/resources/libs/etl folder.
What is correct DataWeave code to import all of the WebStore.dwl file's functions and then call the loginUser function for the login '[email protected]'?
A.
1. 1. import libs.etl 2. 2. --- 3. 3. WebStore.loginUser('[email protected]')
B.
1. 1. import * from libs::etl 2. 2. --- 3. 3. WebStore::loginUser('[email protected]')
C.
1. 1. import libs.etl.WebStore 2. 2. --- 3. 3. loginUser('[email protected]')
D.
1. 1. import * from libs::etl::WebStore 2. 2. --- 3. 3. loginUser('[email protected]')
Your answer:
0 comments
Sorted by
Leave a comment first