Annotation Interface EnableGraphQLRepositories
@Retention(RUNTIME)
@Target(TYPE)
@Import({GraphQLRepositoryProxyBeansRegistrar.class,GraphQLReactiveRepositoryProxyBeansRegistrar.class})
public @interface EnableGraphQLRepositories
This annotation can be applied to some Configuration annotated class with packages to scan interfaces, as below. This
annotation add the configuration to add both reactive and non-reactive GraphQL repositories.
@EnableGraphQLRepositories({
"a.b.c.graphqlrepositories",
"x.y.z.graphqlrepositories"
}) * -
Optional Element Summary
Optional Elements
-
Element Details
-
value
- Default:
- {}
-
basePackages
- Default:
- {}
-