recentlySharedAccounts
Returns a list of recently shared accounts for the authenticated user making this request. This will include accounts that the logged-in user has recently shared bundles with, ordered by the most recently shared date.
An example of the request is as follows:
query {
recentlySharedAccounts(limit: 5) {
accountId
}
}
The limit parameter (optional) specifies the maximum number of accounts to return.
If not specified, defaults to 6 accounts. Maximum allowed value is 20. Values exceeding 20 will be capped at 20.
recentlySharedAccounts(
limit: Int
): [SharedAccount!]!
Arguments
recentlySharedAccounts.limit ● Int scalar miscellaneous
Type
SharedAccount object bundles
Was this topic helpful?