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 updateBranches(limit: 100, offset: 0) { 25 id 26 name 27 updates( 28 limit: 1 29 offset: 0 30 filter: { platform: $platform, runtimeVersions: $runtimeVersions } 31 ) { 32 id 33 group 34 message 35 createdAt 36 runtimeVersion 37 platform 38 manifestPermalink 39 } 40 } 41 } 42 } 43}