I'm having some trouble using circe for a more complex extraction. If I have the below Json:
{
"data": [
{"a": "a-string", "b": "a-string", "c": "a-string"},
{"a": "a-string", "b": "a-string", "c": "a-string"},
{"a": "a-string", "b": "a-string", "c": "a-string"}
]
}
How could I use circe to get a list of those objects, but only containing the a and b fields?