this is my code
JSONObject jsonObjectQL = new JSONObject(qlResponse.asString());
System.out.println("print2: " + jsonObjectQL);
Object graphqlValue =
WorkplaceEmployerGraphModelObject.getValueForKey(jsonObjectQL, key);
System.out.println("print3: " + graphqlValue);
output: print3: ["WorkplaceEmployers","employer"]
my query is how to access “WorkplaceEmployers” and “employer” individually and store them separately? since graphqlValue is an object.