I have this string
{"key1":"1","key2":"someString"}
I would like it to read:
{key1:1,key2:"someString"}
I can easily remove the quotes from everything. But I still need the second value with quotes around it for a graphql query in React. Sorry if my explanation in clear on why.