You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Scalar queries: Fixed the value being returned inside a json object (#13)
* Scalar queries: Fixed the value being returned inside a json object
* v0.1.9
---------
Co-authored-by: Robert Navado <837482+navado@users.noreply.github.com>
Added support for queries that return scalar results (#11)
* Added support for queries that return scalar results
A scalar result is returned as:
```
[
{
"status": "Success",
"kind": "upsolver_scalar_query_response",
"result":
{
"scalar":
{
"value": "<value_here>",
"valueType": "<value_type_here>"
}
}
}
]
```
This commit transforms this result into a 1x1 grid with a column name of
`valueType`.
* v0.1.8
---------
Co-authored-by: Robert Navado <837482+navado@users.noreply.github.com>