graphql-relay-mutationify
Turn javascript objects into a relay mutation input friendly string.
; ; // {firstName: "Mick", lastName: "Hansen", count: 30}
; let input = firstName: 'Mick' lastName: 'Hansen' count: 30; let query = ` mutation { updateProfile(input: {profile: }) { profile } }`;