5 April 2024
Security and privacyGraphQL
You can now view the client and source that created or updated resources indirectly. This new feature will help improve the auditability of changes that were made to resources through methods such as importing and exporting.
Changes:
- [API] Added the 
attributedToproperty to Client Logging. This field is only present on resources created or modified after 1 April 2024. - [GraphQL API] Added the following types to the GraphQL schema: 
Attribution,AttributionSource. - [GraphQL API] Added field 
attributedToto theInitiatortype. 
The following changes were introduced in terms of GraphQL SDL:
type Attribution {
  clientId: String
  source: AttributionSource!
  userRef: Reference
}
enum AttributionSource {
  Export
  Import
}
extend type Initiator {
  attributedTo: Attribution
}