Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upIs there a reason there's no "mention_from" edge? #10
Comments
Sorry for this late reply. The developer and maintainer of this plugin is Matthieu Totet, who can answer you (https://twitter.com/Totetmatt) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
williamgunn commentedJul 15, 2019
This is a question about why you modeled the interactions the way they're modeled.
You have the following user edges:
user - (tweets) -> tweet
user - (retweets) -tweet
user - (quotes) -> tweet
user - (has_retweet_from) -> user
user - (has_quote_from) -> user
It seems like there should also be a
user - (has_mention_from) -> user edge, but you only have a
tweet - (has_mention_of) -> user edge
Is there something I'm missing or did you just not feel the need for this relationship?