From 5959f422a0685ea48a123862782e0ba769e88dc1 Mon Sep 17 00:00:00 2001 From: Joel Jacob Stephen <70131076+JoelJacobStephen@users.noreply.github.com> Date: Mon, 19 Feb 2024 19:16:51 +0530 Subject: [PATCH] feat: new mutation to toggle analytics --- .../backend/gql/mutations/ToggleAnalyticsCollection.graphql | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 packages/hoppscotch-sh-admin/src/helpers/backend/gql/mutations/ToggleAnalyticsCollection.graphql diff --git a/packages/hoppscotch-sh-admin/src/helpers/backend/gql/mutations/ToggleAnalyticsCollection.graphql b/packages/hoppscotch-sh-admin/src/helpers/backend/gql/mutations/ToggleAnalyticsCollection.graphql new file mode 100644 index 000000000..069662030 --- /dev/null +++ b/packages/hoppscotch-sh-admin/src/helpers/backend/gql/mutations/ToggleAnalyticsCollection.graphql @@ -0,0 +1,3 @@ +mutation ToggleAnalyticsCollection($status: ServiceStatus!) { + toggleAnalyticsCollection(status: $status) +}