From 72c4e48b65fa6ac8fa71cdef5d9119bb133ec716 Mon Sep 17 00:00:00 2001 From: Brandon Fergerson Date: Sun, 9 Jul 2023 21:05:00 -0500 Subject: [PATCH] refactor: rename setConfigValue/getConfigValue to setConfigurationValue/getConfigurationValue --- src/main/resources/graphql/manage/get-config-value.graphql | 3 --- .../resources/graphql/manage/get-configuration-value.graphql | 3 +++ src/main/resources/graphql/manage/set-config-value.graphql | 3 --- .../resources/graphql/manage/set-configuration-value.graphql | 3 +++ src/main/resources/graphql/schema.json | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) delete mode 100644 src/main/resources/graphql/manage/get-config-value.graphql create mode 100644 src/main/resources/graphql/manage/get-configuration-value.graphql delete mode 100644 src/main/resources/graphql/manage/set-config-value.graphql create mode 100644 src/main/resources/graphql/manage/set-configuration-value.graphql diff --git a/src/main/resources/graphql/manage/get-config-value.graphql b/src/main/resources/graphql/manage/get-config-value.graphql deleted file mode 100644 index c0b41188..00000000 --- a/src/main/resources/graphql/manage/get-config-value.graphql +++ /dev/null @@ -1,3 +0,0 @@ -query getConfigValue($config: String!){ - getConfigValue(config: $config) -} \ No newline at end of file diff --git a/src/main/resources/graphql/manage/get-configuration-value.graphql b/src/main/resources/graphql/manage/get-configuration-value.graphql new file mode 100644 index 00000000..3f2f8558 --- /dev/null +++ b/src/main/resources/graphql/manage/get-configuration-value.graphql @@ -0,0 +1,3 @@ +query getConfigurationValue($config: String!){ + getConfigurationValue(config: $config) +} \ No newline at end of file diff --git a/src/main/resources/graphql/manage/set-config-value.graphql b/src/main/resources/graphql/manage/set-config-value.graphql deleted file mode 100644 index 2cdd4f02..00000000 --- a/src/main/resources/graphql/manage/set-config-value.graphql +++ /dev/null @@ -1,3 +0,0 @@ -mutation setConfigValue($config: String!, $value: String!) { - setConfigValue(config: $config, value: $value) -} \ No newline at end of file diff --git a/src/main/resources/graphql/manage/set-configuration-value.graphql b/src/main/resources/graphql/manage/set-configuration-value.graphql new file mode 100644 index 00000000..5c386082 --- /dev/null +++ b/src/main/resources/graphql/manage/set-configuration-value.graphql @@ -0,0 +1,3 @@ +mutation setConfigurationValue($config: String!, $value: String!) { + setConfigurationValue(config: $config, value: $value) +} \ No newline at end of file diff --git a/src/main/resources/graphql/schema.json b/src/main/resources/graphql/schema.json index 65b34c6c..f6862dd6 100644 --- a/src/main/resources/graphql/schema.json +++ b/src/main/resources/graphql/schema.json @@ -4825,7 +4825,7 @@ "deprecationReason": null }, { - "name": "setConfigValue", + "name": "setConfigurationValue", "description": null, "args": [ { @@ -6190,7 +6190,7 @@ "deprecationReason": null }, { - "name": "getConfigValue", + "name": "getConfigurationValue", "description": null, "args": [ {