1query Home_ProfileData2($appLimit: Int!, $snackLimit: Int!) {
2  me {
3    id
4    username
5    firstName
6    lastName
7    profilePhoto
8    accounts {
9      id
10      name
11    }
12    appCount
13    apps(limit: $appLimit, offset: 0, includeUnpublished: true) {
14      ...CommonAppData
15    }
16    snacks(limit: $snackLimit, offset: 0) {
17      id
18      name
19      description
20      fullName
21      slug
22      isDraft
23    }
24  }
25}