Import graphs in graphml format

I have more than 700 graphs saved in textfiles in graphml format, I want to import those graphs to my julia code get the edge list from each graph and run a specific code for each graph and save the output for each graph in excel sheet there is any documentation about that, the file looks like this

<?xml version="1.0"?>
<graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns&#10;http://graphml.graphdrawing.org/xmlns/1.0/graphml.xsd&quot;&gt;&#10;">
	<graph id="G" edgedefault="undirected">
		<node id="0" />
		<node id="1" />
		<edge id="0" source="1" target="0" />
	</graph>
</graphml>

Hi there! What have you tried so far? Did you find GraphIO.jl? Did it not work?