when i make a query the object that i got back inc...
# prisma-whats-new
s
when i make a query the object that i got back includes the
__typename
property... is there a way to have a "clean" object with the requested properties only?
n
@sunrising Hey, Apollo automatically includes
__typename
in every query and I'm not aware of a way to get rid of it (Apollo also needs it for correct caching behaviour and more)
s
i understand.. but this is kinda disturbing because if i want to modify that object and mutate it back as update i got errors because it doesn't reflect the model anymore. i will try to clean it "manually"
n
hmm what exactly do you want to change with that?