Fix followings/followers pagination

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2020-10-27 09:13:17 +01:00
parent 4206ff50f6
commit bf0ec150cd
4 changed files with 96 additions and 46 deletions

View File

@@ -69,10 +69,18 @@ import RouteName from "../../router/name";
relayFollowings: {
query: RELAY_FOLLOWINGS,
fetchPolicy: "cache-and-network",
variables: {
page: 1,
limit: 10,
},
},
relayFollowers: {
query: RELAY_FOLLOWERS,
fetchPolicy: "cache-and-network",
variables: {
page: 1,
limit: 10,
},
},
},
})