Hello, I would like to get in code all the subscription for a user, basically to have the data from "My subscriptions" as if it weren't paginated. Currently if I'm using the following query SELECT * FROM subscriptions WHERE subscriber.id = '167' I'm getting the subscriptions plus some additional ones, which my guess is that they are nested subscriptions (include_nested=false throws error). Is there a way to mimic the original call without pagination OR how could I filter out the nested ones so that it looks like the original page's data? Thanks!
... View more