1query WebContainerProjectPage_Query(
2  $appId: String!
3  $platform: AppPlatform!
4  $runtimeVersions: [String!]!
5) {
6  app {
7    byId(appId: $appId) {
8      id
9      name
10      slug
11      fullName
12      username
13      published
14      description
15      githubUrl
16      playStoreUrl
17      appStoreUrl
18      sdkVersion
19      iconUrl
20      privacy
21      icon {
22        url
23      }
24      latestReleaseForReleaseChannel(platform: $platform, releaseChannel: "default") {
25        sdkVersion
26        runtimeVersion
27      }
28      updateBranches(limit: 100, offset: 0) {
29        id
30        name
31        updates(
32          limit: 1
33          offset: 0
34          filter: { platform: $platform, runtimeVersions: $runtimeVersions }
35        ) {
36          id
37          group
38          message
39          createdAt
40          runtimeVersion
41          platform
42          manifestPermalink
43        }
44      }
45    }
46  }
47}