Hello everyone, anyone successfully get Apollo Upl...
# graphql
m
Hello everyone, anyone successfully get Apollo Uploads working with graphql-kotlin & ktor? If so what did you end up needing to do?
d
haven’t tried it myself but you might want to double check whether your data fetcher is using correctly configured jackson object mapper
m
Alright, so I’ve been trying different variations of that solution, though it seems like the short-circuit mechanism that was mentioned has been fixed. I think the hardest part might be that I’m using Ktor instead of Spring possibly. Where it’s failing for me is when Jackson is trying to decode the graphql request, since throwing a multipart dataype isn’t to spec json.
d
Sounds like you might need some custom deserializer to handle those fields correctly
m
Yeah, you’re probably right. Let me do some research and see if I can figure it out. Thanks for the guidance!