将自己的帖子包含在关注用户的帖子中
Include own posts with posts from followed users
我想获取用户关注的所有帖子以及我自己的帖子以创建新闻提要。
g.V().has('name', 'Bob').both('is_friend').out('has_posted').as('posts')
以上代码仅来自关注用户的 returns 个帖子。
如何添加我自己的帖子?
您可以使用 union
和 identity
步骤:
g.V().has('name', 'Bob').union(
both('is_friend'),
identity())
.out('has_posted').as('posts')
您可以看到您的问题的 "live" 示例 here(只需 运行 您的查询)
我想获取用户关注的所有帖子以及我自己的帖子以创建新闻提要。
g.V().has('name', 'Bob').both('is_friend').out('has_posted').as('posts')
以上代码仅来自关注用户的 returns 个帖子。
如何添加我自己的帖子?
您可以使用 union
和 identity
步骤:
g.V().has('name', 'Bob').union(
both('is_friend'),
identity())
.out('has_posted').as('posts')
您可以看到您的问题的 "live" 示例 here(只需 运行 您的查询)