commonMain.com.apollographql.apollo.api.Fragment.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apollo-api-jvm Show documentation
Show all versions of apollo-api-jvm Show documentation
Apollo GraphQL API classes
The newest version!
package com.apollographql.apollo.api
/**
* Base interface for a fragment implementation.
* Fragments do not have variables per the GraphQL spec but they are inferred from arguments and used when reading the cache
* See https://github.com/graphql/graphql-spec/issues/204 for a proposal to add fragment arguments
*/
interface Fragment : Executable {
/**
* Marker interface for generated models of this fragment
*/
interface Data : Executable.Data
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy