Hey guys! I wanted to manage my React Native iOS a...
# prisma-whats-new
r
Hey guys! I wanted to manage my React Native iOS application's local data better. I was thinking of using Apollo to tie my components together with GraphQL queries. Now comes the tricky part. I want to somehow transform the GraphQL request sent from Apollo into modifying CoreData on iOS instead of some network. Does anybody have experience in this and could help me out? Did anybody ever use GraphQL to manage CoreData on iOS?
j
@rene Sounds more like a question for the Apollo Slack. But have you looked into
apollo-link-state
? It allows you to mark queries/mutations as client-only and define your own client-side resolving logic.
r
@Jannis Pohlmann that’s exactly what I was looking for!! Thanks