OBJECT
LoginInfo
Contains information about the user's authentication context.
link GraphQL Schema definition
1 type LoginInfo { 2 3 # API token. This is a persistent organization-level token intended for API 4 # access. 5 String : 6 7 # Session-scoped user token. This token is tied to the user's session and will 8 # expire 9 # when that session ends. 10 String : 11 12 # Date and time when the token will expire. 13 DateTime : 14 15 # Date and time at which the user last logged in to the Veritone platform 16 String : 17 18 # List of Veritone platform applications for which the user is provisioned. 19 # Note that these are different than the VDA custom applications referenced 20 # in the `Application` type, `applications()` query, and related mutations. 21 ID] : [ 22 23 ApplicationPlatform] : [ 24 25 # Groups to which the user belongs. 26 Group] : [ 27 28 # True if the user account has a password set. False otherwise. 29 # If false, the user will be prompted to set a password on next login. 30 Boolean : 31 32 # Organization to which the user belongs. 33 Organization : 34 35 # True if a password reset will be required on the user's next login. 36 Boolean : 37 38 # TODO 39 String : 40 41 # TODO 42 String : 43 44 # TODO 45 String : 46 47 # User object 48 User : 49 50 }