hcomnetworkers

Results 2 issues of hcomnetworkers

Is there any way to enable code-completion for a yaml-file that only contains e.g. schemas? For example, I have a `Foo.yml` with: ```yml openapi: 3.0.0 components: schemas: foo: type: object...

The "findCycles" algorithm does currently not return any cycles caused by self referencing nodes. Example ```javascript const graph = new graphlib.Graph({ multigraph: true }); graph.setNode('node1'); graph.setEdge('node1', 'node1', null, 'edge1'); const...