You can wrap your query in a select to convert to json and achieve this result.
Example
select TO_JSON_STRING(t, true) FROM (select 'apple' as fruit) t
Outputs
{ "fruit": "apple" }