Very interesting idea. Many thanks for your detailed answer!

On Wednesday, August 2, 2017 at 6:05:59 PM UTC+1, Jordan (Cloud Platform 
Support) wrote:
>
> There does not seem to be any limit for Datastore Kinds 
> <https://cloud.google.com/datastore/docs/concepts/limits>. Essentially 
> you would have one 'Form' Kind. When someone creates a new main Form entity 
> via your application you then make that main Form available to other user's 
> via your application. 
>
> When a user fills out the main Form via your application, you then save a 
> copy of that Form entity for that user, and save their email or ID to the 
> new copied Form entity.  
>
> Each Form will have multiple Section entities, and each Section will have 
> multiple Question entities. The user then interacts with their own Form's 
> Question entities (organized into Sections like Google Forms). 
>
>
> *- Datastore Kinds:*
>
>    - *Form:*
>       - User's email who filled out. (null if this is the Main form to be 
>       copied by other users). 
>       - Title.
>       - Ordered list of Section entity IDs.
>       - Background image URL. 
>       - other settings etc..
>    - *Section:*
>       - Parent = a Form entity.
>       - Title.
>       - Ordered list of Question entity IDs.
>    - *Question Kinds*:
>       - *MultipleChoice:*
>          - Parent = a Section entity.
>          - List of choices.
>          - Chosen choices by user. 
>       - *CheckBoxes:*
>          - Parent = a Section entity.
>          - List of options for checkboxes.
>          - Chosen options by user. 
>       - *Paragraph:*
>          - Parent = a Section entity.
>          - Paragraph String.
>       - etc...
>    
>
> - NOTE: This is my own interpretation of how you would implement Google 
> Forms with the Datastore, and is in no way a reflection of how it is 
> actually implemented. 
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/204d571b-8f5a-40ff-8d25-cf9f354790fe%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to