1query Home_AccountData($accountName: String!, $appLimit: Int!, $snackLimit: Int!) {
2  account {
3    byName(accountName: $accountName) {
4      id
5      name
6      appCount
7      apps(limit: $appLimit, offset: 0) {
8        id
9        fullName
10        name
11        iconUrl
12        packageName
13        username
14        description
15        sdkVersion
16        published
17        lastPublishedTime
18        privacy
19      }
20      snacks(limit: $snackLimit, offset: 0) {
21        id
22        name
23        description
24        fullName
25        slug
26        isDraft
27      }
28    }
29  }
30}