(rootModelClass, roots)
| 14 | } |
| 15 | |
| 16 | static create(rootModelClass, roots) { |
| 17 | const builder = ModelGraphBuilder.buildGraph(rootModelClass, roots); |
| 18 | return new ModelGraph(builder.nodes, builder.edges); |
| 19 | } |
| 20 | |
| 21 | static createEmpty() { |
| 22 | return new ModelGraph([], []); |