I've a little problem with Flask RESTless, maybe you can help me :)
I have some tables in my SQL (and SQLAlchemy) that are results of N..N relation, and their primary Keys are the sum of two columns. For example
Table 1 Key / Table 2 Key / Some data
0 0 Bla
0 1 Blabla
1 0 Morebla
1 1 Silenceisgolden
If I use GET verb with an ID, Example 0, RESTless use only "Table 1 Key" and return me 0,0,Bla.
I can use the query Language (?q=) and get both 0,0 and 0,1.
Question is: how I can select only one with PATCH or DELETE verb? I can only DELETE or PATCH 0,0
Hope this question is clear :)
Many thanks!