Polishing

Closes gh-559
This commit is contained in:
rstoyanchev
2022-12-06 15:38:27 +00:00
parent ca0d0b46f9
commit c43c0bec2e
3 changed files with 22 additions and 14 deletions

View File

@@ -326,9 +326,11 @@ public abstract class QueryByExampleDataFetcher<T> {
}
/**
* Callback interface that can be used to customize QueryByExampleDataFetcher {@link Builder}
* to change its configuration. {@link #autoRegistrationConfigurer(List, List) Auto-registration}
* applies the customizer for DataFetchers based on repositories implementing this interface.
* Callback interface that can be used to customize QueryByExampleDataFetcher
* {@link Builder} to change its configuration.
* <p>This is supported by {@link #autoRegistrationConfigurer(List, List)
* Auto-registration}, which detects if a repository implements this
* interface and applies it accordingly.
*
* @param <T>
* @since 1.1.1
@@ -419,9 +421,11 @@ public abstract class QueryByExampleDataFetcher<T> {
}
/**
* Callback interface that can be used to customize QueryByExampleDataFetcher {@link ReactiveBuilder}
* to change its configuration. {@link #autoRegistrationConfigurer(List, List) Auto-registration}
* applies the customizer for DataFetchers based on repositories implementing this interface.
* Callback interface that can be used to customize QueryByExampleDataFetcher
* {@link ReactiveBuilder} to change its configuration.
* <p>This is supported by {@link #autoRegistrationConfigurer(List, List)
* Auto-registration}, which detects if a repository implements this
* interface and applies it accordingly.
*
* @param <T>
* @since 1.1.1

View File

@@ -394,9 +394,11 @@ public abstract class QuerydslDataFetcher<T> {
/**
* Callback interface that can be used to customize QuerydslDataFetcher {@link Builder}
* to change its configuration. {@link #autoRegistrationConfigurer(List, List) Auto-registration}
* applies the customizer for DataFetchers based on repositories implementing this interface.
* Callback interface that can be used to customize QuerydslDataFetcher
* {@link Builder} to change its configuration.
* <p>This is supported by {@link #autoRegistrationConfigurer(List, List)
* Auto-registration}, which detects if a repository implements this
* interface and applies it accordingly.
*
* @param <T>
* @since 1.1.1
@@ -516,9 +518,11 @@ public abstract class QuerydslDataFetcher<T> {
/**
* Callback interface that can be used to customize QuerydslDataFetcher {@link ReactiveBuilder}
* to change its configuration. {@link #autoRegistrationConfigurer(List, List) Auto-registration}
* applies the customizer for DataFetchers based on repositories implementing this interface.
* Callback interface that can be used to customize QuerydslDataFetcher
* {@link ReactiveBuilder} to change its configuration.
* <p>This is supported by {@link #autoRegistrationConfigurer(List, List)
* Auto-registration}, which detects if a repository implements this
* interface and applies it accordingly.
*
* @param <T>
* @since 1.1.1

View File

@@ -282,11 +282,11 @@ class QuerydslDataFetcherTests {
}
static GraphQlSetup graphQlSetup(@Nullable QuerydslPredicateExecutor<?> executor) {
return initGraphQlSetup(executor, null);
return initGraphQlSetup(executor, null);
}
static GraphQlSetup graphQlSetup(@Nullable ReactiveQuerydslPredicateExecutor<?> executor) {
return initGraphQlSetup(null, executor);
return initGraphQlSetup(null, executor);
}
private static GraphQlSetup initGraphQlSetup(