Skip to content

Commit 72c4e48

Browse files
committed
refactor: rename setConfigValue/getConfigValue to setConfigurationValue/getConfigurationValue
1 parent fc27273 commit 72c4e48

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

src/main/resources/graphql/manage/get-config-value.graphql

Lines changed: 0 additions & 3 deletions
This file was deleted.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
query getConfigurationValue($config: String!){
2+
getConfigurationValue(config: $config)
3+
}

src/main/resources/graphql/manage/set-config-value.graphql

Lines changed: 0 additions & 3 deletions
This file was deleted.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
mutation setConfigurationValue($config: String!, $value: String!) {
2+
setConfigurationValue(config: $config, value: $value)
3+
}

src/main/resources/graphql/schema.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4825,7 +4825,7 @@
48254825
"deprecationReason": null
48264826
},
48274827
{
4828-
"name": "setConfigValue",
4828+
"name": "setConfigurationValue",
48294829
"description": null,
48304830
"args": [
48314831
{
@@ -6190,7 +6190,7 @@
61906190
"deprecationReason": null
61916191
},
61926192
{
6193-
"name": "getConfigValue",
6193+
"name": "getConfigurationValue",
61946194
"description": null,
61956195
"args": [
61966196
{

0 commit comments

Comments
 (0)