@@ -8899,6 +8899,14 @@ type Control implements Node {
88998899 Returns the workflow event timeline for this control across all workflow instances
89008900 """
89018901 workflowTimeline(after: Cursor, first: Int, before: Cursor, last: Int, orderBy: [WorkflowEventOrder!], where: WorkflowEventWhereInput, includeEmitFailures: Boolean): WorkflowEventConnection!
8902+ """
8903+ relatedControls show the controls and frameworks mapped to this control
8904+ """
8905+ relatedControls: RelatedControlConnection!
8906+ """
8907+ relatedSubcontrols show the subcontrols and frameworks mapped to this control
8908+ """
8909+ relatedSubcontrols: RelatedSubcontrolConnection!
89028910}
89038911"""
89048912Return response for createBulkControl mutation
@@ -70578,10 +70586,6 @@ type RelatedControlConnection {
7057870586 """
7057970587 edges: [RelatedControlEdge]
7058070588 """
70581- Information to aid in pagination.
70582- """
70583- pageInfo: PageInfo!
70584- """
7058570589 Identifies the total count of items in the connection.
7058670590 """
7058770591 totalCount: Int!
@@ -70596,26 +70600,6 @@ type RelatedControlEdge {
7059670600 node: Control!
7059770601}
7059870602"""
70599- Ordering options for RelatedControl connections
70600- """
70601- input RelatedControlOrder {
70602- """
70603- The ordering direction.
70604- """
70605- direction: OrderDirection! = ASC
70606- """
70607- The field by which to order RelatedControl.
70608- """
70609- field: RelatedControlOrderField!
70610- }
70611- """
70612- Properties by which RelatedControl connections can be ordered.
70613- """
70614- enum RelatedControlOrderField {
70615- referenceFramework
70616- systemOwned
70617- }
70618- """
7061970603A connection to a list of items.
7062070604"""
7062170605type RelatedSubcontrolConnection {
@@ -70624,10 +70608,6 @@ type RelatedSubcontrolConnection {
7062470608 """
7062570609 edges: [RelatedSubcontrolEdge]
7062670610 """
70627- Information to aid in pagination.
70628- """
70629- pageInfo: PageInfo!
70630- """
7063170611 Identifies the total count of items in the connection.
7063270612 """
7063370613 totalCount: Int!
@@ -70641,26 +70621,6 @@ type RelatedSubcontrolEdge {
7064170621 """
7064270622 node: Subcontrol!
7064370623}
70644- """
70645- Ordering options for RelatedSubcontrol connections
70646- """
70647- input RelatedSubcontrolOrder {
70648- """
70649- The ordering direction.
70650- """
70651- direction: OrderDirection! = ASC
70652- """
70653- The field by which to order RelatedSubcontrol.
70654- """
70655- field: RelatedSubcontrolOrderField!
70656- }
70657- """
70658- Properties by which RelatedSubcontrol connections can be ordered.
70659- """
70660- enum RelatedSubcontrolOrderField {
70661- referenceFramework
70662- systemOwned
70663- }
7066470624type Remediation implements Node {
7066570625 id: ID!
7066670626 createdAt: Time
@@ -79130,6 +79090,14 @@ type Subcontrol implements Node {
7913079090 where: IdentityHolderWhereInput
7913179091 ): IdentityHolderConnection!
7913279092 """
79093+ relatedControls show the controls and frameworks mapped to this control
79094+ """
79095+ relatedControls: RelatedControlConnection!
79096+ """
79097+ relatedSubcontrols show the subcontrols and frameworks mapped to this control
79098+ """
79099+ relatedSubcontrols: RelatedSubcontrolConnection!
79100+ """
7913379101 Indicates if this subcontrol has pending changes awaiting workflow approval
7913479102 """
7913579103 hasPendingWorkflow: Boolean!
0 commit comments