···11+# eyewall
22+33+(WIP) App to crawl the bluesky post graph and find outlier graph components.
44+55+There are three post graphs:
66+77+ - reply-only
88+ - quote-only
99+ - reply-quote
1010+1111+We want to find weakly-connected components in all three graphs with:
1212+1313+ - a large number of nodes
1414+ - a large depth (max path length from source to sink)
1515+ - a large width (max size of an "antichain", or equivalently by [Dilworth's theorem](https://en.wikipedia.org/wiki/Dilworth%27s_theorem) the min number of chains needed to cover the subgraph)
1616+1717+and maybe some other statistics.
1818+1919+2020+This allows you to find the largest/longest/widest reply trees, quote trees, and reply-quote subgraphs.
2121+2222+2323+## Limitations
2424+2525+Only knows about posts that are related via post graph, and nothing about posts that are semantically related but not graph-ically related (i.e. it doesn't see "subtweets").