@forge/cli-shared

9.4.0-next.109.4.0-next.11
out/app-logs/graphql-client.js
~out/app-logs/graphql-client.jsModified
+26
Index: package/out/app-logs/graphql-client.js
===================================================================
--- package/out/app-logs/graphql-client.js
+++ package/out/app-logs/graphql-client.js
@@ -43,8 +43,12 @@
         $offset: Int!,
         $limit: Int!,
         $queryStartTime: String!,
         $runtime: String
+        $functionKeys: [String]
+        $containers: [String]
+        $instances: [String]
+        $services: [String]
       ) {
         appLogsWithMetaData(
           appId: $appId
           environmentId: $environmentId
@@ -53,8 +57,12 @@
           queryStartTime: $queryStartTime
           query: {
             dates: $dateSearchInput
             runtime: $runtime
+            functionKeys: $functionKeys
+            containers: $containers
+            instances: $instances
+            services: $services
           }
         ) {
           appLogs {
             appId
@@ -67,8 +75,26 @@
             error
             other
             ts
           }
+          appLogsFilterBuckets {
+            containers {
+              key
+              count
+              __typename
+            }
+            services {
+              key
+              count
+              __typename
+            }
+            functionKeys {
+              key
+              count
+              __typename
+            }
+            __typename
+          }
           hasNextPage
           totalLogs
           __typename
         }