lcuis

Results 124 comments of lcuis

> For anyone who still wants the functionality in the app please go and leave a +1 on this PR: #43 So that @Purus can see it and merge ASAP....

I will try here to decompose and clarify my question into several ones to make it more friendly. Sorry if it was too cryptic or not well explained. Please let...

Thanks a lot @mevdschee for your reply! > >Here are the limitations I know of: > >... > >3. This probably only works for MySQL/MariaDB. > >... > Point 3...

Thank you very much for your responses @mevdschee ! I would ideally like to continue creating in the two join tables with only one call to php-crud-api . I like...

There is a `ReflectedTable->getFksTo` function that returns the foreign keys from a table to another one. Also, `ColumnsBuilder->getInsert` conveniently takes care of the writing of the insert query. Maybe those...

Great, thanks. On the create, I would like to propose another error message: `1022: 409 Conflict: Circular link in transaction`. This is to avoid the impossible transaction where T_G ->...

If I try to extend a bit option 2), the update can look like this: ``` PUT /transactions [ { "table_a":[ { "id":1, "name":"name one" }, { "id":2, "value":"value two"...

I have seen trees in the php-crud-api code. Are we talking about the same thing?

Thanks! > > However, we may have situations where a table could have more than one parent. > > IMHO, these situations are not very common. > Yes, I see...

> > this is one assumption for php-crud-api. > > Yes, representation as a tree is (which still allows cycles to exist) > Cycles can exist outside the tree or...