This repository was archived by the owner on Dec 19, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +22
-2
lines changed
graphiql-spring-boot-autoconfigure/src/main/java/graphql/kickstart/graphiql/boot Expand file tree Collapse file tree 2 files changed +22
-2
lines changed Original file line number Diff line number Diff line change @@ -56,6 +56,7 @@ subprojects {
56
56
jcenter()
57
57
maven { url " https://dl.bintray.com/graphql-java-kickstart/releases" }
58
58
maven { url " https://repo.spring.io/libs-milestone" }
59
+ maven { url " https://oss.sonatype.org/content/repositories/snapshots" }
59
60
maven { url " https://oss.jfrog.org/artifactory/oss-snapshot-local" }
60
61
}
61
62
@@ -88,6 +89,10 @@ subprojects {
88
89
}
89
90
}
90
91
92
+ jacoco {
93
+ toolVersion = " 0.8.7-SNAPSHOT"
94
+ }
95
+
91
96
jacocoTestReport {
92
97
reports {
93
98
xml. enabled = true
Original file line number Diff line number Diff line change @@ -32,12 +32,27 @@ static class CodeMirror {
32
32
@ Data
33
33
static class Props {
34
34
35
- private Variables variables = new Variables ();
35
+ private GraphiQLVariables variables = new GraphiQLVariables ();
36
36
37
+ /**
38
+ * See https://github.com/graphql/graphiql/tree/main/packages/graphiql#props
39
+ */
37
40
@ Data
38
- static class Variables {
41
+ static class GraphiQLVariables {
39
42
43
+ private String query ;
44
+ private String variables ;
45
+ private String headers ;
46
+ private String operationName ;
47
+ private String response ;
48
+ private String defaultQuery ;
49
+ private boolean defaultVariableEditorOpen ;
50
+ private boolean defaultSecondaryEditorOpen ;
40
51
private String editorTheme ;
52
+ private boolean readOnly ;
53
+ private boolean docsExplorerOpen ;
54
+ private boolean headerEditorEnabled ;
55
+ private boolean shouldPersistHeaders ;
41
56
}
42
57
}
43
58
You can’t perform that action at this time.
0 commit comments