1query BranchDetails(
2  $name: String!
3  $appId: String!
4  $platform: AppPlatform!
5  $sdkVersions: [String!]!
6) {
7  app {
8    byId(appId: $appId) {
9      id
10      name
11      slug
12      fullName
13      updateBranchByName(name: $name) {
14        id
15        name
16        updates(limit: 100, offset: 0, filter: { platform: $platform, sdkVersions: $sdkVersions }) {
17          id
18          group
19          message
20          createdAt
21          runtimeVersion
22          platform
23          manifestPermalink
24        }
25      }
26    }
27  }
28}
29