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, includeUnpublished: true) {
8        ...CommonAppData
9      }
10      snacks(limit: $snackLimit, offset: 0) {
11        id
12        name
13        description
14        fullName
15        slug
16        isDraft
17      }
18    }
19  }
20}