|
@@ -165,11 +165,13 @@ enum MatchType
|
|
|
|
|
|
type Mutation
|
|
type Mutation
|
|
@join__type(graph: AUTH)
|
|
@join__type(graph: AUTH)
|
|
|
|
+ @join__type(graph: SPORTS)
|
|
{
|
|
{
|
|
- Signup(credentials: Credentials!): String
|
|
|
|
- Login(credentials: Credentials!): AccessTokenResponse
|
|
|
|
- Logout(token: String!): Boolean!
|
|
|
|
- RefreshToken(token: String!): AccessTokenResponse
|
|
|
|
|
|
+ Signup(credentials: Credentials!): String @join__field(graph: AUTH)
|
|
|
|
+ Login(credentials: Credentials!): AccessTokenResponse @join__field(graph: AUTH)
|
|
|
|
+ Logout(token: String!): Boolean! @join__field(graph: AUTH)
|
|
|
|
+ RefreshToken(token: String!): AccessTokenResponse @join__field(graph: AUTH)
|
|
|
|
+ PlaceCryptoOrder(symbol: String!, direction: Int!): Boolean! @join__field(graph: SPORTS)
|
|
}
|
|
}
|
|
|
|
|
|
interface Node
|
|
interface Node
|