I have an app I'm building and it asks the user a couple questions, then, click Next button.
The next screen asks them a lot more information, then, click Review button.
The Review screen shows them the details they've submitted from the first two screens, via a gallery.
Question: The data I'm collecting from screen1 is personal information, into RequestorInfo collection
The data I'm collecting from screen2 is computer related information into RequestDetails collection
I want screen2 to use/patch a combination of RequestorInfo and RequestDetails collections. I was hoping that I could simply reference both collections in my patch statement, but that doesn't seem to work, or else, I'm just doing it wrong. 🙂
Thoughts to make this work? I'm not tied to 2 collections, just thought it'd be easier to do it this way, clearly I was wrong. 😉
Thanks in advance.