OPCUA - EnumStrings in AS 6.x not available

Dear B&R team,

We have converted our project from AS 4.12 to AS 6.5,
In our program we use to get to this node using UA_TranslatePath fub.

In AS 4.12 it is working , while in AS 6.x its not, i investigated it further using UAExpert and i found that in AS 6.x the EnumStrings attributies are not available. See the attcahed picture.
Can you help me with information and what can be done now to get the EnumString values.

Hello,

There is a change in Automation Studio 6; see help.

You can browse to the enumeration type definition node under Root/Types/DataTypes/BaseDataType/Enumeration/.

See also : as-opcua-enumstrings/OpcEnum/Readme.md at main · br-automation-community/as-opcua-enumstrings

Thanks Pavel,
I implemented a solution - I used UA_NodeGetInfo_0 to read the data type info and then using this datatype info i browse the enum with UA_TranslateSourcePath - and then used bulkRead to get the values and it worked.