description | layout | |||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Learn how to recommend users based on Social Follows |
|
You can fetch follow recommendations for user(s) by simply showing them all the accounts that followed the given user(s):
{% embed url="https://app.airstack.xyz/query/GEk75j6Clw" %} Show me all followers of vitalik.eth and their account details {% endembed %}
{% tabs %} {% tab title="Query" %}
query MyQuery {
Farcaster: SocialFollowers(
input: {filter: {identity: {_in: ["vitalik.eth"]}, dappName: {_eq: farcaster}}, blockchain: ALL, limit: 200}
) {
Follower {
followerAddress {
socials(input: {filter: {dappName: {_eq: farcaster}}}) {
dappName
profileName
userId
profileImage
}
}
}
pageInfo {
nextCursor
prevCursor
hasNextPage
hasPrevPage
}
}
Lens: SocialFollowers(
input: {filter: {identity: {_in: ["vitalik.eth"]}, dappName: {_eq: lens}}, blockchain: ALL, limit: 200}
) {
Follower {
followerAddress {
socials(input: {filter: {dappName: {_eq: lens}}}) {
dappName
profileName
userId
profileImage
profileImageContentValue{
image{
medium
}
}
}
}
}
pageInfo {
nextCursor
prevCursor
hasNextPage
hasPrevPage
}
}
}
{% endtab %} {% endtabs %}
With the response, you can get all followerAddress.socials
and compile them into an array of accounts that you can recommend for the given user(s) to follow.
If you have any questions or need help regarding building a recommendation engine, please join our Airstack's Telegram group.