davidhstocker / Graphyne

Graphyne is a smart graph - a property graph capable to actively reacting to changes and incorporating decision making logic, written in Python. It is designed to be easy to integrate into your Python projects, simple to use and very powerful. It uses Memetic as its graph definition and query language. It is capable of running with or without persistence.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Update getLinkCounterparts()

davidhstocker opened this issue · comments

This api method is supposed to get all of the nearest neighbors of a given entity. It uses a different code clock than getLinkCounterpartsByType(), but there is no testcase and in any cases where the smoketest does check for all nearest neighbors, getLinkCounterpartsByType(entityID, "*") is used. The latter is the canonical method, as using the single wildcard for meme type yields every nearest neighbor.

getLinkCounterparts() needs to become a wrapper for getLinkCounterpartsByType(entityID, "*")