Given users.graphql
users.graphql
mutation UpdateUser($input: UpdateUserInput!) { updateUser(input: $input) { user { ...UserFragment } } } query UserByEmail($email: String!) { userByEmail(email: $email) { ...UserFragment } }
is there a way to generate a text files with the operations separated out? This would be used for testing.
2.1m questions
2.1m answers
60 comments
57.0k users