Skip to content
Prev Previous commit
Next Next commit
Remove mapScalar
  • Loading branch information
Mariam-98 committed Aug 23, 2023
commit e9a441525b18f7e6e17705c425c5e160ddec5d50
1 change: 0 additions & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ android {
apollo {
service("service") {
packageName.set("com.simply.birthdayapp")
mapScalarToKotlinString("Date")
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ data class CreateBirthdayEntity(
val name: String,
val imageBase64: String?,
val relation: String,
val date: String,
val date: Any,
)