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

graphql.kickstart.autoconfigure.tools.GraphQLToolsProperties Maven / Gradle / Ivy

The newest version!
package graphql.kickstart.autoconfigure.tools;

import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;

@Data
@ConfigurationProperties(prefix = "graphql.tools")
class GraphQLToolsProperties {

  private String schemaLocationPattern = "**/*.graphqls";
  /**
   * Enable or disable the introspection query. Disabling it puts your server in contravention of
   * the GraphQL specification and expectations of most clients, so use this option with caution
   */
  private boolean introspectionEnabled = true;

  private boolean useDefaultObjectmapper = true;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy