OBJECT

DropAccountLink

A mapping of the client ID set to determine whether a user has set up account linking for the game.

link GraphQL Schema definition

1type DropAccountLink {
2
3# The associated clientID for a game used to determine if users have an account
4# link
5# created between tuid and in-game userID.
6clientID: ID!
7
8# The date when this clientID was first added.
9updatedAt: Time!
10
11}