Merge branch 'fix-followings-pagination' into 'master'

Fix followings/followers pagination

See merge request framasoft/mobilizon!657
This commit is contained in:
Thomas Citharel
2020-10-27 16:38:33 +01:00
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,
},
},
},
})