authSource
Retrieves information for that specific authentication source.
Input Parameters:
id: ID of the authentication source to retrieve.
Response: AuthSource object containing ID, name, description, and associated roles.
Example Request:
query {
authSource(id: "<xxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx>") {
id,
name,
description,
roles {
id,
name,
description
}
}
}
authSource(
id: ID!
): AuthSource!
Arguments
authSource.id ● ID! non-null scalar miscellaneous
Type
AuthSource interface platform
An interface for authentication source
Was this topic helpful?