OBJECT

TprRequestSummary

Description

Used in bulk query for TPR requests.

link GraphQL Schema definition

  • type TprRequestSummary {
  • # User making the TPR request.
  • requester: UserSummary!
  • # ID of the organization.
  • orgId: String!
  • # Name of the organization.
  • orgName: String!
  • # Status of the request.
  • status: TprReqStatus!
  • # Time the request was last updated.
  • updatedAt: DateTime
  • # Highest priority rule triggered by the request.
  • triggeredTprRule: TprRule!
  • # TPR Request ID.
  • requestId: UUID!
  • # Authorized operations.
  • operations: AuthorizedOps!
  • }