The data I'm trying to pull in is from a URL and every piece of data is wrapped in cdata tags so Domo isn't recognizing it or returning any data. Is there a way I can pull this in?
Here is a sample of how the data is set up in the XML:
<allData>
<unit>
<Name>
<![CDATA[ Group A ]]>
</Name>
<number>
<![CDATA[ 123456789 ]]>
</number>
<Code>
<![CDATA[ 87654321 ]]>
</Code>
<Title>
<![CDATA[ This is a title ]]>
</Title>
</unit>
<unit>
<Name>
<![CDATA[ Group B ]]>
</Name>
<number>
<![CDATA[ 223456780 ]]>
</number>
<Code>
<![CDATA[ 98765432 ]]>
</Code>
<Title>
<![CDATA[ This is another title ]]>
</Title>
</unit>
</allData>