io.committed.invest.graphql.ui.GraphQlUiExtension Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of invest-plugin-graphql-ui Show documentation
Show all versions of invest-plugin-graphql-ui Show documentation
GraphQL endpoints to support the invest UI
package io.committed.invest.graphql.ui;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import io.committed.invest.extensions.InvestGraphQlExtension;
/** Extension which offers GraphQl resolvers to support the UI. */
@Configuration
@ComponentScan(basePackageClasses = GraphQlUiExtension.class)
@EnableConfigurationProperties(UiPluginsSettings.class)
public class GraphQlUiExtension implements InvestGraphQlExtension {}