1query Home_AccountSnacks($accountName: String!, $limit: Int!, $offset: Int!) {
2  account {
3    byName(accountName: $accountName) {
4      id
5      name
6      snacks(limit: $limit, offset: $offset) {
7        id
8        name
9        description
10        fullName
11        slug
12        isDraft
13      }
14    }
15  }
16}