AppAvatarState
No description
type AppAvatarState {
appId: BigInt!
avatarId: BigInt!
state: String
createdAt: DateTime!
updatedAt: DateTime!
}
Fields
AppAvatarState.appId ● BigInt! non-null scalar
App (game) id this state is scoped to. BigInt serialized as a decimal string.
AppAvatarState.avatarId ● BigInt! non-null scalar
Avatar id this state belongs to. BigInt serialized as a decimal string.
AppAvatarState.state ● String scalar
Per-app avatar state blob, base64-encoded binary; null when cleared. Owner-exclusive write, public read.
AppAvatarState.createdAt ● DateTime! non-null scalar
Row creation timestamp (ISO-8601).
AppAvatarState.updatedAt ● DateTime! non-null scalar
Last-update timestamp (ISO-8601).
Returned By
avatarAppState query ● avatarAppStates query ● updateAvatarAppState mutation