In my GAE datastore I have the following kinds:store, order and transaction. One store has several orders, and one order has several transactions. store is parent to order, order is parent to transaction. The ids are generated automatically by the datastore.
In the DB I discovered two different order records with the same id, but with different parents. So it seems that the ids are not unique in themselves - only in combination with their parent? Is this correct?
If so, I always need to query id AND parent in queries?
Thanks, -Louise