Class DataFetchersDelegateHumanImpl

java.lang.Object
org.starwars.server.datafetchersdelegate.DataFetchersDelegateHumanImpl
All Implemented Interfaces:
DataFetchersDelegateHuman

@Component public class DataFetchersDelegateHumanImpl extends Object implements DataFetchersDelegateHuman
Author:
etienne-sf
  • Field Details

    • logger

      protected org.slf4j.Logger logger
      The logger for this instance
  • Constructor Details

    • DataFetchersDelegateHumanImpl

      public DataFetchersDelegateHumanImpl()
  • Method Details

    • friends

      public List<Character> friends(graphql.schema.DataFetchingEnvironment environment, Human source)
      Description copied from interface: DataFetchersDelegateHuman
      This method loads the data for Human.friends.
      Specified by:
      friends in interface DataFetchersDelegateHuman
      Parameters:
      environment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      source - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the friends attribute of the origin, which is an instance of {ObjectType {name:Human, fields:{Field{name:id, type:ID!, params:[]},Field{name:name, type:String!, params:[]},Field{name:friends, type:[Character], params:[]},Field{name:appearsIn, type:[Episode]!, params:[]},Field{name:homePlanet, type:String, params:[]}}, implements Character, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • appearsIn

      public List<Episode> appearsIn(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, Human source)
      Description copied from interface: DataFetchersDelegateHuman
      This method loads the data for Human.appearsIn.
      Specified by:
      appearsIn in interface DataFetchersDelegateHuman
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      source - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the appearsIn attribute of the origin, which is an instance of {ObjectType {name:Human, fields:{Field{name:id, type:ID!, params:[]},Field{name:name, type:String!, params:[]},Field{name:friends, type:[Character], params:[]},Field{name:appearsIn, type:[Episode]!, params:[]},Field{name:homePlanet, type:String, params:[]}}, implements Character, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • batchLoader

      public List<Human> batchLoader(List<UUID> keys)
      Description copied from interface: DataFetchersDelegateHuman
      This method loads a list of ${dataFetcher.field.name}, based on the list of id to be fetched. This method is used by graphql-java java-dataloader to highly optimize the number of requests to the server, when recursing down through the object associations.
      You can find more information on this page: graphql-java batching
      Important notes:
      • The list returned by this method must be sorted in the exact same order as the given keys list. If values are missing (no value for a given key), then the returned list must contain a null value at this key's position.
      • One of batchLoader or unorderedReturnBatchLoader must be overriden in the data fetcher implementation. If not, then a NullPointerException will be thrown at runtime, with a proper error message.
      • If your data storage implementation makes it complex to return values in the same order as the keys list, then it's easier to override unorderedReturnBatchLoader, and let the default implementation of batchLoader order the values
      Specified by:
      batchLoader in interface DataFetchersDelegateHuman
      Parameters:
      keys - A list of ID's id, for which the matching objects must be returned
      Returns:
      A list of IDs