move from clubmemberships to memberships to get also national memberships
This commit is contained in:
parent
06c49983aa
commit
8041f6835f
@ -40,13 +40,19 @@ type CardSupply struct {
|
|||||||
Unique int `graphql:"unique"`
|
Unique int `graphql:"unique"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type ClubMembership struct {
|
type Membership struct {
|
||||||
Id graphql.Id `graphql:"id"`
|
Id graphql.Id `graphql:"id"`
|
||||||
Club struct {
|
|
||||||
Slug string `graphql:"slug"`
|
|
||||||
} `graphql:"club"`
|
|
||||||
StartDate time.Time `graphql:"startDate"`
|
StartDate time.Time `graphql:"startDate"`
|
||||||
EndDate *time.Time `graphql:"endDate"`
|
EndDate *time.Time `graphql:"endDate"`
|
||||||
|
MembershipTeam struct {
|
||||||
|
TypeName string `graphql:"__typename"`
|
||||||
|
Club struct {
|
||||||
|
Slug string `graphql:"slug"`
|
||||||
|
} `graphql:"... on Club"`
|
||||||
|
NationalTeam struct {
|
||||||
|
Slug string `graphql:"slug"`
|
||||||
|
} `graphql:"... on NationalTeam"`
|
||||||
|
} `graphql:"membershipTeam"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type Player struct {
|
type Player struct {
|
||||||
@ -68,8 +74,8 @@ type Player struct {
|
|||||||
BirthDate time.Time `graphql:"birthDate"`
|
BirthDate time.Time `graphql:"birthDate"`
|
||||||
CardPositions []types.Position `graphql:"cardPositions"`
|
CardPositions []types.Position `graphql:"cardPositions"`
|
||||||
CardSupply []CardSupply `graphql:"cardSupply"`
|
CardSupply []CardSupply `graphql:"cardSupply"`
|
||||||
ClubMemberships []ClubMembership `graphql:"clubMemberships"`
|
|
||||||
Id graphql.Id `graphql:"id"`
|
Id graphql.Id `graphql:"id"`
|
||||||
|
Memberships []Membership `graphql:"memberships"`
|
||||||
Slug string `graphql:"slug"`
|
Slug string `graphql:"slug"`
|
||||||
DisplayName string `graphql:"displayName"`
|
DisplayName string `graphql:"displayName"`
|
||||||
FirstName string `graphql:"firstName"`
|
FirstName string `graphql:"firstName"`
|
||||||
|
Loading…
Reference in New Issue
Block a user