1query Home_ProfileData2($appLimit: Int!, $snackLimit: Int!) {
2  meUserActor {
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      ...CommonSnackData
18    }
19  }
20}