We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f85b11d commit fbe0625Copy full SHA for fbe0625
src/xmllang/graphml.cpp
@@ -402,6 +402,16 @@ bool write_graphml(const graphmlt &src, std::ostream &os)
402
key.set_attribute("id", "producer");
403
}
404
405
+ // <key attr.name="creationtime" attr.type="string" for="graph"
406
+ // id="creationtime"/>
407
+ {
408
+ xmlt &key = graphml.new_element("key");
409
+ key.set_attribute("attr.name", "creationtime");
410
+ key.set_attribute("attr.type", "string");
411
+ key.set_attribute("for", "graph");
412
+ key.set_attribute("id", "creationtime");
413
+ }
414
+
415
// <key attr.name="startline" attr.type="int" for="edge" id="startline"/>
416
{
417
xmlt &key=graphml.new_element("key");
0 commit comments