Optional
limit?: InputMaybe<LimitType>Optional
orderThe order by which to sort the profiles - note if your looking at your own following it always be DESC
const { data, loading, error } = useProfileFollowing({
for: '0x123',
});
Experimental
Fetch profiles that are followed by a requested profile.
This signature supports React Suspense.
const { data } = useProfileFollowing({
for: '0x123',
suspense: true,
});
console.log(data);
This API can change without notice
Fetch profiles that are followed by a requested profile.