Would it be possible to create nested mutations on a GraphQL back-end? I have 3 tables in postgresql which are all related. I wanted to know if its possible to nest 3 separate mutations within a parent mutation (which will all do 3 separate INSERT statements.)
Is this possible? Or will I just have to create 3 separate mutations at the root level and nest them on the front-end with apollo-client ?