All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.graphglue.graphql.schema.FieldDataFetchingEnvironment.kt Maven / Gradle / Ivy

Go to download

A library to develop annotation-based code-first GraphQL servers using GraphQL Kotlin, Spring Boot and Neo4j - excluding Spring GraphQL server dependencies

There is a newer version: 7.0.5
Show newest version
package io.github.graphglue.graphql.schema

import graphql.schema.DataFetchingEnvironment
import io.github.graphglue.definition.FieldDefinition

/**
 * [DataFetchingEnvironment] which also contains the [FieldDefinition] of the field being fetched
 *
 * @param parent the parent [DataFetchingEnvironment]
 * @param fieldDefinition the [FieldDefinition] of the field being fetched
 */
class FieldDataFetchingEnvironment(
    private val parent: DataFetchingEnvironment, internal val fieldDefinition: FieldDefinition
) : DataFetchingEnvironment by parent




© 2015 - 2024 Weber Informatics LLC | Privacy Policy