OBJECT

AzureAdApplication

Description

Azure AD application.

link GraphQL Schema definition

  • type AzureAdApplication {
  • # Display name of the Azure AD application.
  • displayName: String!
  • # App ID of the Azure AD application.
  • appId: String!
  • # Created date and time of the Azure AD application.
  • createdDateTime: DateTime
  • # Specifies if the secrets of the Azure AD application have expired.
  • secretsExpired: Boolean!
  • # List of App Roles associated with the Azure AD application.
  • appRoles: [AzureAdAppRole!]!
  • # Number of App Roles associated with the Azure AD application.
  • appRolesCount: Int!
  • }