I think I’m just not understanding how relationships between collections work.
Collection 1 (LibraryItems) is a list of items in my inventory. There are only 2 types of items in the inventory: Movies and Tools.
There are 2 True/False fields in this collection, to identify whether an item is a tool or a movie (Tool? and Movie?).
A record in collection 2 (LibraryRecord) is created whenever someone borrows an item.
A relationship exists between these two collections.
So here’s my problem:
In a list of a user’s borrowed items (which is just a list of that user’s LibraryRecords) I want to show whether each item is a tool or a movie (because the terms of borrowing will be different). But I can’t find the Tool? / Movie? identifiers via magic text. Those T/F fields don’t seem to carry over from the LibraryItems collection to the LibraryRecord collection.
I tried creating identical T/F fields in the LibraryRecord collection, but they don’t populate with data from the LibraryItems collection.
What am I doing wrong here? Isn’t the relationship between collections A and B supposed to make data from A available in a list of collection B?
I hope someone can advise me on this. I’m confused!