> For the complete documentation index, see [llms.txt](https://developer.collibra.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.collibra.com/api/graphql/data-access/object-types/access-control-from-access-request.md).

# AccessControlFromAccessRequest

Represents the result object for an action to an access control, which is triggered during the implementation of an access request. It contains both the access control and the access request that triggered the action.

```graphql
type AccessControlFromAccessRequest {
  accessControl: AccessControl!
  accessRequest: AccessRequest!
}
```

### Fields

#### accessControl ● [`AccessControl!`](/api/graphql/data-access/object-types/access-control.md) non-null object <a href="#access-control" id="access-control"></a>

The access control that was updated or created.

#### accessRequest ● [`AccessRequest!`](/api/graphql/data-access/object-types/access-request.md) non-null object <a href="#access-request" id="access-request"></a>

The access request from which the action was triggered.

### Implemented By

[`AccessControlFromAccessRequestResult`](/api/graphql/data-access/unions/access-control-from-access-request-result.md) union
