Uses of Interface
org.starwars.server.Character
Packages that use Character
Package
Description
-
Uses of Character in org.starwars.server
Classes in org.starwars.server that implement CharacterMethods in org.starwars.server that return CharacterModifier and TypeMethodDescriptionMutationType.getAddFriend()
QueryType.getHero()
SubscriptionType.getNewCharacter()
Methods in org.starwars.server that return types with arguments of type CharacterModifier and TypeMethodDescriptionQueryType.getCharacters()
Character.getFriends()
Droid.getFriends()
Human.getFriends()
Droid.getFriendsCharacter()
Human.getFriendsCharacter()
Methods in org.starwars.server with parameters of type CharacterModifier and TypeMethodDescriptionvoid
MutationType.setAddFriend
(Character addFriend) void
void
SubscriptionType.setNewCharacter
(Character newCharacter) MutationType.Builder.withAddFriend
(Character addFriendParam) SubscriptionType.Builder.withNewCharacter
(Character newCharacterParam) Method parameters in org.starwars.server with type arguments of type CharacterModifier and TypeMethodDescriptionvoid
QueryType.setCharacters
(List<Character> characters) void
Character.setFriends
(List<Character> friends) void
Droid.setFriends
(List<Character> friends) void
Human.setFriends
(List<Character> friends) QueryType.Builder.withCharacters
(List<Character> charactersParam) Droid.Builder.withFriends
(List<Character> friendsParam) Human.Builder.withFriends
(List<Character> friendsParam) -
Uses of Character in org.starwars.server.datafetchersdelegate
Methods in org.starwars.server.datafetchersdelegate that return CharacterModifier and TypeMethodDescriptionDataFetchersDelegateMutationTypeImpl.addFriend
(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, String idCharacter, String idFriend) Reads one Character, from its idDataFetchersDelegateQueryTypeImpl.hero
(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, Episode episode) Methods in org.starwars.server.datafetchersdelegate that return types with arguments of type CharacterModifier and TypeMethodDescriptionCharacterHelper.batchLoader
(List<UUID> keys) DataFetchersDelegateCharacterImpl.batchLoader
(List<UUID> keys) DataFetchersDelegateQueryTypeImpl.characters
(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, Episode episode) CharacterHelper.findAll()
CharacterHelper.findByAppearsIn
(String episode) Retrieves the list of friends of the character which id is given.DataFetchersDelegateCharacterImpl.friends
(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, Character source) DataFetchersDelegateDroidImpl.friends
(graphql.schema.DataFetchingEnvironment environment, Droid source) DataFetchersDelegateHumanImpl.friends
(graphql.schema.DataFetchingEnvironment environment, Human source) DataFetchersDelegateSubscriptionTypeImpl.newCharacter
(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment) Methods in org.starwars.server.datafetchersdelegate with parameters of type Character -
Uses of Character in org.starwars.server.util
Methods in org.starwars.server.util that return types with arguments of type CharacterModifier and TypeMethodDescriptionDataFetchersDelegateCharacter.batchLoader
(List<UUID> keys) This method loads a list of ${dataFetcher.field.name}, based on the list of id to be fetched.DataFetchersDelegateCharacter.unorderedReturnBatchLoader
(List<UUID> keys) This method loads a list of ${dataFetcher.field.name}, based on the list of id to be fetched.Methods in org.starwars.server.util with parameters of type CharacterModifier and TypeMethodDescriptionCharacterController.appearsIn
(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, Character origin) This method loads the data for ${dataFetcher.graphQLType}.appearsIn.DataFetchersDelegateCharacter.appearsIn
(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, Character origin) This method loads the data for Character.appearsIn.CharacterController.friends
(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, Character origin) This method loads the data for ${dataFetcher.graphQLType}.friends.DataFetchersDelegateCharacter.friends
(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, Character origin) This method loads the data for Character.friends.