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

com.coxautodev.graphql.tools.ScannedSchemaObjects.kt Maven / Gradle / Ivy

There is a newer version: 5.2.4
Show newest version
package com.coxautodev.graphql.tools

import com.google.common.collect.BiMap
import graphql.language.FieldDefinition
import graphql.language.ObjectTypeDefinition
import graphql.language.TypeDefinition
import graphql.schema.GraphQLScalarType

/**
 * @author Andrew Potter
 */
internal data class ScannedSchemaObjects(
    val dictionary: TypeClassDictionary,
    val definitions: Set>,
    val customScalars: CustomScalarMap,
    val rootInfo: RootTypeInfo,
    val fieldResolversByType: Map>
)

internal typealias TypeClassDictionary = BiMap, Class<*>>
internal typealias CustomScalarMap = Map




© 2015 - 2024 Weber Informatics LLC | Privacy Policy