![JAR search and dependency download from the Maven repository](/logo.png)
com.merapar.graphql.GraphQlProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of graphql-spring-boot-starter Show documentation
Show all versions of graphql-spring-boot-starter Show documentation
This is a Spring boot starter project for the GraphQL Java project.
The newest version!
package com.merapar.graphql;
import lombok.Getter;
import lombok.Setter;
import org.springframework.boot.context.properties.ConfigurationProperties;
@ConfigurationProperties(prefix = "com.merapar.graphql")
public class GraphQlProperties {
@Getter
@Setter
private String rootQueryName = "queries";
@Getter
@Setter
private String rootQueryDescription = "";
@Getter
@Setter
private String rootMutationName = "mutations";
@Getter
@Setter
private String rootMutationDescription = "";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy