You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GQL: Add a resolver in Commit type, that gets the bundle report of the commit, that displays the total size of all the bundles and size of each individual bundle
Commit.bundleAnalysisReport: BundleAnalysisReportResult
union BundleAnalysisReportResult =
BundleAnalysisReport
| MissingHeadReport
type BundleAnalysisReport {
sizeTotal: Int!
loadTimeTotal: Float!
bundles: [BundleReport]!
}
type BundleReport {
name: String!
sizeTotal: Int!
loadTimeTotal: Float!
}
The text was updated successfully, but these errors were encountered:
GQL: Add a resolver in
Commit
type, that gets the bundle report of the commit, that displays the total size of all the bundles and size of each individual bundleThe text was updated successfully, but these errors were encountered: