jvmMain.com.apollographql.apollo.api.FileUpload.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!
@file:JvmName("FileUpload")
package com.apollographql.apollo.api
import okio.buffer
import okio.source
import java.io.File
fun File.toUpload(contentType: String): DefaultUpload {
return DefaultUpload.Builder()
.content { sink ->
source().buffer().use { sink.writeAll(it) }
}
.contentLength(length())
.contentType(contentType)
.fileName(name)
.build()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy