Authentication
Last edit: Oct 26, 2022
Authentication using provider
type Authentication {
created_at: JSONDate
deleted_at: JSONDate
id: ID
provider: AuthenticationProvider
raw_info: HashObject
token: String
token_expires_at: JSONDate
uid: String
updated_at: JSONDate
}
Fields
created_at
(JSONDate
)
timestamp of when the record was created, automatically generated by the system
deleted_at
(JSONDate
)
timestamp of when the record was soft delete, populated by delete action. It
is also possible to manually set it via update. To undelete change it back to
empty value, but please note that associated records would need to be manually
undeleted as well.
id
(ID
)
provider
(AuthenticationProvider
)
name of authentication provider used for creating this authentication
raw_info
(HashObject
)
token
(String
)
token_expires_at
(JSONDate
)
uid
(String
)
updated_at
(JSONDate
)
timestamp of when the record was updated, automatically generated by the system