FrendsPlatform / Frends.Json

FRENDS JSON Processing tasks, which allow you to do JSONPath queries, JSON Handlebars transformations, JSON Validation against a JSONSchema and converting various data formats to JSON.
MIT License
7 stars 4 forks source link

The Query task should return a type that is castable to JArray or JToken #20

Open asmourpi opened 6 months ago

asmourpi commented 6 months ago

The task now returns IEnumerable, which is not castable as a JToken or JArray directly and instead you will have to do JArray.FromObject(#result[JSON Query]) to able to process the data in a nice way.

Could the task be updated to return a type that is castable to JToken or JArray directly?