Merge from master

This commit is contained in:
WithoutPants
2019-10-24 15:07:34 +11:00
25 changed files with 1247 additions and 14 deletions

View File

@@ -2,6 +2,8 @@ fragment ConfigGeneralData on ConfigGeneralResult {
stashes
databasePath
generatedPath
username
password
}
fragment ConfigInterfaceData on ConfigInterfaceResult {

View File

@@ -5,6 +5,10 @@ input ConfigGeneralInput {
databasePath: String
"""Path to generated files"""
generatedPath: String
"""Username"""
username: String
"""Password"""
password: String
}
type ConfigGeneralResult {
@@ -14,6 +18,10 @@ type ConfigGeneralResult {
databasePath: String!
"""Path to generated files"""
generatedPath: String!
"""Username"""
username: String!
"""Password"""
password: String!
}
input ConfigInterfaceInput {