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": [ {