All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.merapar.graphql.GraphQlProperties Maven / Gradle / Ivy

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