added experimental types graphml/gml

This commit is contained in:
David Schor 2015-08-10 02:38:15 -04:00
parent 76e4a5d15e
commit 99587c2f24
2 changed files with 98 additions and 0 deletions

View file

@ -34,6 +34,11 @@ func Dump(qs graph.QuadStore, outFile, typ string) error {
export.ExportNquad()
case "json":
export.ExportJson()
// gml/graphml experimental
case "gml":
export.ExportGml()
case "graphml":
export.ExportGraphml()
default:
return fmt.Errorf("unknown format %q", typ)
}