I have the following model
(Club)-HAS-(Match)-AT-(Datetime) And (Club)-HAS-(Player)-UNAVAILABLE-(Datetime)
I am using Amazon Neptune to run this, and i am running in the following situation:
I should be able to for each match that a club has, identify which player are available
- I need to check the date of each match Match
- For each match, identify the club
- From club, get players
- From player, check if he has an unavailable state on the same match-DateTime
How could I run this in Neptune?
thanks