com.expediagroup.graphql.generator.federation.validation.FieldSetSelection.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of graphql-kotlin-federation Show documentation
Show all versions of graphql-kotlin-federation Show documentation
Federated GraphQL schema generator
package com.expediagroup.graphql.generator.federation.validation
/**
* Simple representation of a FieldSet selection set.
*/
internal data class FieldSetSelection(val field: String, val subSelections: MutableList = ArrayList())