-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #353 from flickmatch/team-division
Add team color in player
- Loading branch information
Showing
3 changed files
with
11 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 9 additions & 8 deletions
17
platform/src/main/java/com/flickmatch/platform/graphql/type/Player.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
package com.flickmatch.platform.graphql.type; | ||
|
||
import lombok.Builder; | ||
|
||
@Builder | ||
public class Player { | ||
String displayName; | ||
} | ||
package com.flickmatch.platform.graphql.type; | ||
|
||
import lombok.Builder; | ||
|
||
@Builder | ||
public class Player { | ||
String displayName; | ||
String teamColor; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -256,6 +256,7 @@ type EVENT { | |
|
||
type Player { | ||
displayName: String! | ||
teamColor: String | ||
} | ||
|
||
type SportsVenue { | ||
|