- help with datastore query
- **playlist**
- songs = db.ListProperty(db.Key)
- **Song**
- artist = db.ReferenceProperty(Artist,collection_name='songs')
- **Artist**
- Key Name = john-lennon
- songs = GqlQuery('SELECT __key__ FROM song WHERE artist = :1', 'john-lennon')
- playlists = GqlQuery('SELECT * FROM playlist WHERE songs IN :1', songs)