I have two collections 1) user_posts 2)user_profile. find the below collection data for your reference.
1) user_posts collection
_id :ObjectId("5d519f861c9d4400005ebd1b")
userid : ObjectId("5d518caed55bc00001d235c1")
media : "hello.jpg"
type : "jpg"
created : " "
modified : " "
like : Array
0 : Object
userid : ObjectId("5d518caed55bc00001d235c1")
status : "like"
1 : Object
userid : ObjectId("5d518da6d55bc00001d235c2")
status : "happy"
comment : Array
0 : Object
userid : ObjectId("5d518caed55bc00001d235c1")
comment : "hello"
1 : Object
userid : ObjectId("5d518da6d55bc00001d235c2")
comment : "welcome"
share : Array
0 : Object
userid : ObjectId("5d518caed55bc00001d235c1")
status : "shared"
1 : Object
userid : ObjectId("5d518da6d55bc00001d235c2")
status : "shared"
2) User_profile collection
_id : ObjectId("5d518caed55bc00001d235c1")
username : "ramesh",
photo : " ",
created : " ",
modified : " "
_id : ObjectId("5d518da6d55bc00001d235c2")
username : "shekar",
photo : " ",
created : " ",
modified : " "
Now i tried to get the profile details from user_profile in lambda function. but i didn't get the details. find the below lambda function code.
def lambda_handler(event, context):
print("Received event: " + json.dumps(event, indent=1))
user_posts = db.user_posts
Userid = event['userid']
uid = ObjectId(Userid)
dispost = list(user_posts.aggregate([{
"$match" : { "userid" : uid }
},
{ "$graphLookup" :
{
"from" : "user_profile",
"startWith" : "$like.userid",
"connectFromField" : "like.userid",
"connectToField" : "_id",
"as" : "userdetails"
}
},
{ "$graphLookup" :
{
"from" : "user_profile",
"startWith" : "$comment.userid",
"connectFromField" : "comment.userid",
"connectToField" : "_id",
"as" : "userdetails1"
}
}
{ "$graphLookup" :
{
"from" : "user_profile",
"startWith" : "$share.userid",
"connectFromField" : "share.userid",
"connectToField" : "_id",
"as" : "userdetails2"
}
}
]))
disair = json.dumps(dispost, default=json_util.default)
return json.loads(disair)
but i didn't get the output. i need output like this below.
_id :ObjectId("5d519f861c9d4400005ebd1b")
userid : ObjectId("5d518caed55bc00001d235c1")
username : "ramesh"
photo : " ",
media : "hello.jpg"
type : "jpg"
created : " "
modified : " "
like : Array
0 : Object
userid : ObjectId("5d518caed55bc00001d235c1")
status : "like"
username : "ramesh"
photo : " "
1 : Object
username : "shekar"
photo : " "
userid : ObjectId("5d518da6d55bc00001d235c2")
status : "happy"
username : "shekar"
photo : " "
comment : Array
0 : Object
userid : ObjectId("5d518caed55bc00001d235c1")
comment : "hello"
username : "ramesh"
photo : " "
1 : Object
userid : ObjectId("5d518da6d55bc00001d235c2")
comment : "welocme"
username : "shekar"
photo : " "
share : Array
0 : Object
userid : ObjectId("5d518caed55bc00001d235c1")
status : "shared"
username : "ramesh"
photo : " "
1 : Object
userid : ObjectId("5d518da6d55bc00001d235c2")
status : "shared"
username : "shekar"
photo : " "
can you please help me the solutions. Thanks in advance.