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) {
14      id
15      description
16      fullName
17      iconUrl
18      lastPublishedTime
19      name
20      packageName
21      username
22      sdkVersion
23      privacy
24      published
25    }
26    snacks(limit: $snackLimit, offset: 0) {
27      id
28      name
29      description
30      fullName
31      slug
32      isDraft
33    }
34  }
35}