View Issue Details

IDProjectCategoryView StatusLast Update
0004143CaseTalk ModelerGeneration (SQL, XML, etc)public2023-09-09 13:44
ReporterBCP Software Assigned ToBCP Software  
PrioritynormalSeverityfeatureReproducibilityhave not tried
Status resolvedResolutionfixed 
PlatformIntelOSWindowsOS Version11
Target Version13.0.1Fixed in Version13.0.1 
Summary0004143: Export to GraphML
DescriptionFor graph workers, or simply Graph-like import into Neo4J, or related products, an export in GraphML would be helpful.

http://graphml.graphdrawing.org/primer/graphml-primer.html
TagsNo tags attached.
CaseTalk Editionunknown

Activities

BCP Software

BCP Software

2023-08-23 09:01

administrator   ~0004936

Example:

<?xml version="1.0" encoding="UTF-8"?>
<graphml xmlns="http://graphml.graphdrawing.org/xmlns"  
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns
     http://graphml.graphdrawing.org/xmlns/1.0/graphml.xsd">
  <graph id="G" edgedefault="undirected">
    <node id="n0"/>
    <node id="n1"/>
    <node id="n2"/>
    <node id="n3"/>
    <node id="n4"/>
    <node id="n5"/>
    <node id="n6"/>
    <node id="n7"/>
    <node id="n8"/>
    <node id="n9"/>
    <node id="n10"/>
    <edge source="n0" target="n2"/>
    <edge source="n1" target="n2"/>
    <edge source="n2" target="n3"/>
    <edge source="n3" target="n5"/>
    <edge source="n3" target="n4"/>
    <edge source="n4" target="n6"/>
    <edge source="n6" target="n5"/>
    <edge source="n5" target="n7"/>
    <edge source="n6" target="n8"/>
    <edge source="n8" target="n7"/>
    <edge source="n8" target="n9"/>
    <edge source="n8" target="n10"/>
  </graph>
</graphml>
BCP Software

BCP Software

2023-08-23 09:05

administrator   ~0004937

Example extended with data:

<?xml version="1.0" encoding="UTF-8"?>
<graphml xmlns="http://graphml.graphdrawing.org/xmlns"  
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns 
        http://graphml.graphdrawing.org/xmlns/1.0/graphml.xsd">
  <key id="d0" for="node" attr.name="color" attr.type="string">
    <default>yellow</default>
  </key>
  <key id="d1" for="edge" attr.name="weight" attr.type="double"/>
  <graph id="G" edgedefault="undirected">
    <node id="n0">
      <data key="d0">green</data>
    </node>
    <node id="n1"/>
    <node id="n2">
      <data key="d0">blue</data>
    </node>
    <node id="n3">
      <data key="d0">red</data>
    </node>
    <node id="n4"/>
    <node id="n5">
      <data key="d0">turquoise</data>
    </node>
    <edge id="e0" source="n0" target="n2">
      <data key="d1">1.0</data>
    </edge>
    <edge id="e1" source="n0" target="n1">
      <data key="d1">1.0</data>
    </edge>
    <edge id="e2" source="n1" target="n3">
      <data key="d1">2.0</data>
    </edge>
    <edge id="e3" source="n3" target="n2"/>
    <edge id="e4" source="n2" target="n4"/>
    <edge id="e5" source="n3" target="n5"/>
    <edge id="e6" source="n5" target="n4">
      <data key="d1">1.1</data>
    </edge>
  </graph>
</graphml>
BCP Software

BCP Software

2023-08-23 10:51

administrator   ~0004938

Opening the graph in yEd with a simple mapping shows the conceptual model instantly.
yed.jpg (113,230 bytes)   
yed.jpg (113,230 bytes)   

Issue History

Date Modified Username Field Change
2023-08-23 09:00 BCP Software New Issue
2023-08-23 09:00 BCP Software Status new => assigned
2023-08-23 09:00 BCP Software Assigned To => BCP Software
2023-08-23 09:01 BCP Software Note Added: 0004936
2023-08-23 09:05 BCP Software Note Added: 0004937
2023-08-23 10:47 BCP Software Status assigned => resolved
2023-08-23 10:47 BCP Software Resolution open => fixed
2023-08-23 10:47 BCP Software Fixed in Version => 13.0.1
2023-08-23 10:51 BCP Software Note Added: 0004938
2023-08-23 10:51 BCP Software File Added: yed.jpg
2023-09-09 13:38 BCP Software Fixed in Version 13.0.1 => 12.8.3
2023-09-09 13:44 BCP Software Fixed in Version 12.8.3 => 13.0.1