> 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/role-assignment-connection.md).

# RoleAssignmentConnection

The connection type for paginated lists of `RoleAssignment`.

```graphql
type RoleAssignmentConnection {
  edges: [RoleAssignmentEdge!]
  limit: Int
  limitedCount: String
  offset: Int
  pageInfo: PageInfo!
  total: Int
}
```

### Fields

#### edges ● [`[RoleAssignmentEdge!]`](/api/graphql/data-access/object-types/role-assignment-edge.md) list object <a href="#edges" id="edges"></a>

The list of edges containing the actual queried items.

#### limit ● [`Int`](/api/graphql/data-access/scalars/int.md) scalar <a href="#limit" id="limit"></a>

The limit used for the query. This can differ from the input limit due to restrictions or defaults.

#### limitedCount ● [`String`](/api/graphql/data-access/scalars/string.md) scalar <a href="#limited-count" id="limited-count"></a>

The limited count of the items.

#### offset ● [`Int`](/api/graphql/data-access/scalars/int.md) scalar <a href="#offset" id="offset"></a>

The offset that was used. This will only be filled in if possible (when cursors are sequential numbers).

#### pageInfo ● [`PageInfo!`](/api/graphql/data-access/object-types/page-info.md) non-null object <a href="#page-info" id="page-info"></a>

Pagination information for the retrieved items.

#### total ● [`Int`](/api/graphql/data-access/scalars/int.md) scalar <a href="#total" id="total"></a>

The total count of the items. Preferably use limitedCount instead of total as this is not good for performance.

### Implemented By

[`RoleAssignmentConnectionResult`](/api/graphql/data-access/unions/role-assignment-connection-result.md) union
