Interface DataFetchersDelegateAnotherMutationType

All Known Implementing Classes:
DataFetchersDelegateAnotherMutationTypeImpl

public interface DataFetchersDelegateAnotherMutationType
This interface contains the fata fetchers that are delegated in the bean that the implementation has to provide, when fetching fields for the AnotherMutationType GraphQL type, as defined in the provided GraphQL schema. Please read the wiki server page for more information on this.
Author:
generated by graphql-java-generator
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    _if(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment)
    Description for the if field:
    test for issue #139 (use of java reserved keyword)
    This method loads the data for AnotherMutationType.if.
    _implements(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment)
    This method loads the data for AnotherMutationType.implements.
    createAllFieldCases(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, SINP_AllFieldCasesInput_SINS input)
    This method loads the data for AnotherMutationType.createAllFieldCases.
    createHuman(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, SINP_HumanInput_SINS human)
    This method loads the data for AnotherMutationType.createHuman.
    deleteSnacks(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, List<UUID> id)
    Description for the deleteSnacks field:
    Tests for issue 51
    This method loads the data for AnotherMutationType.deleteSnacks.
  • Method Details

    • createHuman

      STP_Human_STS createHuman(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, SINP_HumanInput_SINS human)
      This method loads the data for AnotherMutationType.createHuman.
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      human - The input parameter sent in the query by the GraphQL consumer, as defined in the GraphQL schema.
      Throws:
      NoSuchElementException - This method may return a NoSuchElementException exception. In this case, the exception is trapped by the calling method, and the return is consider as null. This allows to use the Optional.get() method directly, without caring of whether or not there is a value. The generated code will take care of the NoSuchElementException exception.
    • createAllFieldCases

      STP_AllFieldCases_STS createAllFieldCases(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, SINP_AllFieldCasesInput_SINS input)
      This method loads the data for AnotherMutationType.createAllFieldCases.
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      input - The input parameter sent in the query by the GraphQL consumer, as defined in the GraphQL schema.
      Throws:
      NoSuchElementException - This method may return a NoSuchElementException exception. In this case, the exception is trapped by the calling method, and the return is consider as null. This allows to use the Optional.get() method directly, without caring of whether or not there is a value. The generated code will take care of the NoSuchElementException exception.
    • deleteSnacks

      Boolean deleteSnacks(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, List<UUID> id)
      Description for the deleteSnacks field:
      Tests for issue 51
      This method loads the data for AnotherMutationType.deleteSnacks.
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      id - The input parameter sent in the query by the GraphQL consumer, as defined in the GraphQL schema.
      Throws:
      NoSuchElementException - This method may return a NoSuchElementException exception. In this case, the exception is trapped by the calling method, and the return is consider as null. This allows to use the Optional.get() method directly, without caring of whether or not there is a value. The generated code will take care of the NoSuchElementException exception.
    • _if

      String _if(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment)
      Description for the if field:
      test for issue #139 (use of java reserved keyword)
      This method loads the data for AnotherMutationType.if.
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      Throws:
      NoSuchElementException - This method may return a NoSuchElementException exception. In this case, the exception is trapped by the calling method, and the return is consider as null. This allows to use the Optional.get() method directly, without caring of whether or not there is a value. The generated code will take care of the NoSuchElementException exception.
    • _implements

      String _implements(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment)
      This method loads the data for AnotherMutationType.implements.
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      Throws:
      NoSuchElementException - This method may return a NoSuchElementException exception. In this case, the exception is trapped by the calling method, and the return is consider as null. This allows to use the Optional.get() method directly, without caring of whether or not there is a value. The generated code will take care of the NoSuchElementException exception.