Remove `total` field in `event list`, `browser logs`, `alarm list` commands (#153)

diff --git a/CHANGES.md b/CHANGES.md
index d270f3d..88d5d66 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -15,6 +15,7 @@
 - Remove `layer` field in the `instance` and `process` commands for 9.1.0 GraphQL query protocol's breaking changes (#149)
 - Remove `duration` flag in `profiling ebpf schedules`.(#150)
 - [Breaking Change] Remove `total` field in `trace list` and `logs list` commands.(#152)
+- [Breaking Change] Remove `total` field in `event list`, `browser logs list`, `alarm list` commands.(#153)
 
 0.10.0
 ------------------
diff --git a/assets/graphqls/alarm/alarms.graphql b/assets/graphqls/alarm/alarms.graphql
index 25cb738..d6370e5 100644
--- a/assets/graphqls/alarm/alarms.graphql
+++ b/assets/graphqls/alarm/alarms.graphql
@@ -17,7 +17,6 @@
 
 query ($duration: Duration!, $scope: Scope, $keyword: String, $paging: Pagination!, $tags: [AlarmTag]) {
     result: getAlarm(duration: $duration, scope: $scope, keyword: $keyword, paging: $paging, tags: $tags) {
-        total
         msgs {
             startTime
             scope
diff --git a/assets/graphqls/event/events.graphql b/assets/graphqls/event/events.graphql
index e3ffc61..8a5540e 100644
--- a/assets/graphqls/event/events.graphql
+++ b/assets/graphqls/event/events.graphql
@@ -17,7 +17,6 @@
 
 query ($condition: EventQueryCondition) {
     result: queryEvents(condition: $condition) {
-        total
         events {
             uuid
             source {
diff --git a/assets/graphqls/logs/BrowserLogs.graphql b/assets/graphqls/logs/BrowserLogs.graphql
index a484839..d1733ad 100644
--- a/assets/graphqls/logs/BrowserLogs.graphql
+++ b/assets/graphqls/logs/BrowserLogs.graphql
@@ -17,7 +17,6 @@
 
 query ($condition: BrowserErrorLogQueryCondition!) {
     result: queryBrowserErrorLogs(condition: $condition) {
-        total
         logs {
             service
             serviceVersion
diff --git a/go.mod b/go.mod
index 4da523b..8efc146 100644
--- a/go.mod
+++ b/go.mod
@@ -24,5 +24,5 @@
 	gopkg.in/yaml.v2 v2.4.0
 	k8s.io/apimachinery v0.21.1
 	sigs.k8s.io/controller-runtime v0.7.0
-	skywalking.apache.org/repo/goapi v0.0.0-20220518085432-c95731d312d2
+	skywalking.apache.org/repo/goapi v0.0.0-20220519102801-965f76fbe437
 )
diff --git a/go.sum b/go.sum
index 299a318..d554069 100644
--- a/go.sum
+++ b/go.sum
@@ -950,5 +950,5 @@
 sigs.k8s.io/yaml v1.1.0/go.mod h1:UJmg0vDUVViEyp3mgSv9WPwZCDxu4rQW1olrI1uml+o=
 sigs.k8s.io/yaml v1.2.0 h1:kr/MCeFWJWTwyaHoR9c8EjH9OumOmoF9YGiZd7lFm/Q=
 sigs.k8s.io/yaml v1.2.0/go.mod h1:yfXDCHCao9+ENCvLSE62v9VSji2MKu5jeNfTrofGhJc=
-skywalking.apache.org/repo/goapi v0.0.0-20220518085432-c95731d312d2 h1:ejZ7/AVl5/hQn9WEsNSJm1OU/nI6YZwmTVEosW9Ij7U=
-skywalking.apache.org/repo/goapi v0.0.0-20220518085432-c95731d312d2/go.mod h1:uWwwvhcwe2MD/nJCg0c1EE/eL6KzaBosLHDfMFoEJ30=
+skywalking.apache.org/repo/goapi v0.0.0-20220519102801-965f76fbe437 h1:tWUESKwKU50ZEzQJsOQv50qPvPHj72MjIxFwgeoM7Hg=
+skywalking.apache.org/repo/goapi v0.0.0-20220519102801-965f76fbe437/go.mod h1:uWwwvhcwe2MD/nJCg0c1EE/eL6KzaBosLHDfMFoEJ30=