graphql.nadel.ServiceExecutionFactory.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nadel Show documentation
Show all versions of nadel Show documentation
Nadel is a Java library that combines multiple GrahpQL services together into one API.
package graphql.nadel
interface ServiceExecutionFactory {
/**
* Called to to get a function that can be called to get data for the named service
*
* @param serviceName the name of the service
*
* @return a function that can be called to get data from that service
*/
fun getServiceExecution(serviceName: String): ServiceExecution
}