1query WebContainerProjectPage_Query( 2 $appId: String! 3 $platform: AppPlatform! 4 $sdkVersions: [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(limit: 1, offset: 0, filter: { platform: $platform, sdkVersions: $sdkVersions }) { 32 id 33 group 34 message 35 createdAt 36 runtimeVersion 37 platform 38 manifestPermalink 39 } 40 } 41 } 42 } 43} 44