I would like to store information in the Google Cloud Datastore that is available in GAE.
I have JSON like the following:
{ "users": [
"ABC123",
"XYZ987",
"ZHI663"
]
}
I am looking to store this in the data store but can't work out how. I can't use 'Text String' as it's limited to 500 characters and I need to be able to have many users.
I see in the documentation here that there is a 'List' type which sounds exactly like what I need however this option does not show when I am creating an entity in the developers console. See image here:
If you can only use the 'List' type using the API can anyone show me an example of doing this in PHP?