I'm trying to import an xml-file with apoc.load.xml. Especially I'm trying to get the text in the label-element. Here is my example query:
CALL apoc.load.xml('https://seafile.rlp.net/f/cf1f73f3cbdf413eb14d/?dl=1','',{}, true) yield value as xmlFile
UNWIND xmlFile._register AS register
UNWIND register._lemma AS wdata
RETURN wdata;
How can i reach the content of the label-Element ?