You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 19, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: graphql-kickstart-spring-boot-autoconfigure-graphql-annotations/src/main/java/graphql/kickstart/graphql/annotations/GraphQLAnnotationsAutoConfiguration.java
Copy file name to clipboardExpand all lines: graphql-kickstart-spring-boot-autoconfigure-graphql-annotations/src/main/java/graphql/kickstart/graphql/annotations/GraphQLAnnotationsProperties.java
+14Lines changed: 14 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -28,10 +28,24 @@ public class GraphQLAnnotationsProperties {
28
28
@Builder.Default
29
29
privatebooleanalwaysPrettify = true;
30
30
31
+
/**
32
+
* The prefix to use for input type names.
33
+
* If not configured the default prefix of the GraphQL-Java Annotations library is used.
34
+
* Configure an empty prefix for clearing the library's default prefix.
35
+
*/
36
+
privateStringinputPrefix;
37
+
38
+
/**
39
+
* The suffix to use for input type names.
40
+
* If not configured the default suffix of the GraphQL-Java Annotations library is used.
41
+
*/
42
+
privateStringinputSuffix;
43
+
31
44
/**
32
45
* If set to <code>true</code> abstract classes implementing a GraphQL interface will not be added to the schema.
33
46
* Defaults to <code>false</code> for backward compatibility.
Copy file name to clipboardExpand all lines: graphql-kickstart-spring-boot-autoconfigure-graphql-annotations/src/test/java/graphql/kickstart/graphql/annotations/GraphQLAnnotationsMutationTest.java
Copy file name to clipboardExpand all lines: graphql-kickstart-spring-boot-autoconfigure-graphql-annotations/src/test/java/graphql/kickstart/graphql/annotations/test/mutation/TestMutation.java
Copy file name to clipboardExpand all lines: voyager-spring-boot-autoconfigure/src/main/resources/META-INF/additional-spring-configuration-metadata.json
0 commit comments