You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently it's possible to get a link from the graph through several ways:
using getNode and iterating over the links property
via getLinks and getLink
via nodes and links iterators
However, there's no way to get a link by its id property, which would be useful if you store these ids externally (when the graph is created or changed) for later use.
The text was updated successfully, but these errors were encountered:
I believe a good solution would be to make getLink/hasLink find a link from an id if only the first argument is passed. I created a pr with a proposal for this.
Hello!
Currently it's possible to get a link from the graph through several ways:
getNode
and iterating over thelinks
propertygetLinks
andgetLink
However, there's no way to get a link by its id property, which would be useful if you store these ids externally (when the graph is created or changed) for later use.
The text was updated successfully, but these errors were encountered: