shong
8 years agoAdept
undefined collection: solutions_data
Hello
I am using API browser to execute this LiQL:
select * from solutions_data
But it returns the following error:
{
"status" : "error",
"message" : "undefined collection: solutions_data",
"data" : {
"type" : "error_data",
"code" : 602,
"developer_message" : "",
"more_info" : ""
},
"metadata" : { }
}
According to the API V2,
I can see the description of solutions_data collection, what's wrong?
Regards
Mike
Worked perfect for me. Added a where so I only get accepted solutions back.
SELECT solution_data,is_solution FROM messages WHERE is_solution = true
Thanks!