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

commonMain.com.apollographql.execution.PersistedDocumentCache.kt Maven / Gradle / Ivy

The newest version!
package com.apollographql.execution

import com.apollographql.apollo.ast.GQLDocument
import com.apollographql.apollo.ast.Issue

class PersistedDocument(
    val document: GQLDocument?,
    val issues: List
)

interface PersistedDocumentCache {
    fun get(id: String): PersistedDocument?
    fun put(id: String, persistedDocument: PersistedDocument)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy