Right now entity handler methods are automatically detected by FederationSchemaFactory based on EntityMapping annotations by https://github.com/spring-projects/spring-graphql/blob/bab967c3343ce57fbb8a2adf28aeab8a2ed281f4/spring-graphql/src/main/java/org/springframework/graphql/data/method/annotation/support/AnnotatedControllerDetectionSupport.java#L266 It would seem that it would be very simple to add an option to add such handler methods manually, for example you could add method like ``` FederationSchemaFactory.setEntityHandler(entityName, handlerMethod) ``` It would also be useful to be able to access a list of those methods