Is it possible to create a global datatype that has a 1 to many relationship?
Example
Create a global datatype for Dogs (some object on the website)
ID is a unique 8 character random string
Each Dog has several properties. (color, size, and so on)
Each Dog has many pictures. (as many as you would like, 1toMany)
I can see how you can assign a "C1 Media Folder" to a field, but what we are trying to achieve, is when you are editing the Dog's data (or adding a new one), you can add as many pictures as you want at this moment. It would be nice if the media folder was created at the moment the new Dog's data object is created, and it uses the unique ID from them Dog object to name the Media Folder. This gets us close to what we want, but it still means you have to jump over to the Media Library to upload the images you want tied to the Dog object.
If this is not possible with the current C1 console, does the C1 API allow us to code our own methods for adding images to the media library?
Thank you.