Skip to content

Commit

Permalink
refactor: rename setConfigValue/getConfigValue to setConfigurationVal…
Browse files Browse the repository at this point in the history
…ue/getConfigurationValue
  • Loading branch information
BFergerson committed Jul 10, 2023
1 parent fc27273 commit 72c4e48
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
3 changes: 0 additions & 3 deletions src/main/resources/graphql/manage/get-config-value.graphql

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
query getConfigurationValue($config: String!){
getConfigurationValue(config: $config)
}
3 changes: 0 additions & 3 deletions src/main/resources/graphql/manage/set-config-value.graphql

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
mutation setConfigurationValue($config: String!, $value: String!) {
setConfigurationValue(config: $config, value: $value)
}
4 changes: 2 additions & 2 deletions src/main/resources/graphql/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -4825,7 +4825,7 @@
"deprecationReason": null
},
{
"name": "setConfigValue",
"name": "setConfigurationValue",
"description": null,
"args": [
{
Expand Down Expand Up @@ -6190,7 +6190,7 @@
"deprecationReason": null
},
{
"name": "getConfigValue",
"name": "getConfigurationValue",
"description": null,
"args": [
{
Expand Down

0 comments on commit 72c4e48

Please sign in to comment.