Uses of Class
org.starwars.server.Human
Package
Description
-
Uses of Human in org.starwars.server
Modifier and TypeMethodDescriptionHuman.Builder.build()
MutationType.getCreateHuman()
QueryType.getHuman()
Modifier and TypeMethodDescriptionvoid
MutationType.setCreateHuman
(Human createHuman) void
MutationType.Builder.withCreateHuman
(Human createHumanParam) -
Uses of Human in org.starwars.server.datafetchersdelegate
Modifier and TypeMethodDescriptionDataFetchersDelegateMutationTypeImpl.createHuman
(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, String name, String homePlanet) DataFetchersDelegateQueryTypeImpl.human
(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, UUID id) -
Uses of Human in org.starwars.server.jpa
Modifier and TypeMethodDescriptionHumanRepository.batchLoader
(List<UUID> keys) HumanRepository.findAll()
HumanRepository.findByAppearsIn
(String episode) As in this implementation, we have separate tables for the concrete classes of the Character interface, we use a nativeQuery.HumanRepository.findFriends
(UUID id) -
Uses of Human in org.starwars.server.util
Modifier and TypeMethodDescriptionDataFetchersDelegateHuman.batchLoader
(List<UUID> keys) This method loads a list of ${dataFetcher.field.name}, based on the list of id to be fetched.DataFetchersDelegateHuman.unorderedReturnBatchLoader
(List<UUID> keys) This method loads a list of ${dataFetcher.field.name}, based on the list of id to be fetched.Modifier and TypeMethodDescriptionDataFetchersDelegateHuman.appearsIn
(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, Human origin) This method loads the data for Human.appearsIn.HumanController.appearsIn
(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, Human origin) This method loads the data for ${dataFetcher.graphQLType}.appearsIn.DataFetchersDelegateHuman.friends
(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, Human origin) This method loads the data for Human.friends.HumanController.friends
(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, Human origin) This method loads the data for ${dataFetcher.graphQLType}.friends.