I'm kind of stuck on this problem. I think I know what I should do, but it just don't seem to work.
I'm trying to include a related object in a rest call, by adding a parameter 'include=RoundGroup', RoundGroup being the collumnname of a pointerfield. The thing is: I got one service working brilliantly with this method, the other one keeps returning this error message:
"code":"DBSQ203",
"description":"Collection 'RoundGroup' absent in database with id '51cd92a3e4b0901056be9216'."
Allright, I know there's no Collection with that name, the collection is called 'rounds_groups'. So let's try that, and 'include=rounds_groups'. But that gets me this message:
"code":"DBSQ237",
"description":"The column you are trying to include does not exist: 'rounds_groups'."
Yeah I know that's not the columnname! So here's where my thinking got into some infinit loop, that you might help me break.
Like I said, I got a working example proofing the first solution should be right, including the collumnname instead of the collection name.
You might think there won't be a problem if I had simular named collum names and collection names, but no, my working example proofs that's not nessesarily a problem.
The only logical difference between my functioning and disfunctioning service I can think of, is me using these caps in the collumnname.
I'm sort of clueless and it feels like maybe something buggy, but then again I'm probably just making some kind of stupid mistake.