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
I feel surprised when i see the Query Syntax and Access Control designs. My first feel the Query Syntax is similar to Mongodb. That is hard work I think. Thanks for it.
After That, I spend the whole day to see the source code and document. Because i want to apply it to my new project. But i will not to use it now. Because it is unfamiliar to me now.
But, after checking the code and document. I have some questions about it. Below are what i thinking about now:
Why it don't handle the pagination. I mean the API should return like the meta page, total. Do it myself is ok. That good if it can provide.
The Query Syntax Having make no sense if it cannot be used with group by in mysql.??
If I use more than two IN condition. But the relationship is or not and. But i cannot do it now.
If i call api like this:
/albums?in={"id": [1], "title": ["Album 1"]}
The result is id IN (1) AND title IN ("Album 1"). But I want to search like this:
SELECT * FROM photo WHERE id IN(1,2) or album_id IN(2);
The fields query condition cannot filter the field. ps: I download the v1.3.7 release.
I call api like this:
/albums?fields=title
But the result is not my expect
{
"albums": [
{
"id": 1,
"title": "Album 1",
"createdAt": "2016-02-28T11:28:33Z",
"updatedAt": "2016-02-28T11:28:33Z"
},
....and so on
]
}
Thanks. Sorry my bad english, I try my best.
The text was updated successfully, but these errors were encountered:
I feel surprised when i see the
Query Syntax
andAccess Control
designs. My first feel theQuery Syntax
is similar toMongodb
. That is hard work I think. Thanks for it.After That, I spend the whole day to see the source code and document. Because i want to apply it to my new project. But i will not to use it now. Because it is unfamiliar to me now.
But, after checking the code and document. I have some questions about it. Below are what i thinking about now:
page
,total
. Do it myself is ok. That good if it can provide.group by
in mysql.??and
. But i cannot do it now.If i call api like this:
The result is
id IN (1) AND title IN ("Album 1")
. But I want to search like this:I call api like this:
But the result is not my expect
Thanks. Sorry my bad english, I try my best.
The text was updated successfully, but these errors were encountered: