Schema Documentation
userRoles
Description
Connection between the RootQuery type and the UserRole type
Response
Returns a
RootQueryToUserRoleConnection
Arguments
Name | Description |
---|---|
first -
Int | The number of items to return after the referenced "after" cursor |
last -
Int | The number of items to return before the referenced "before" cursor |
after -
String | Cursor used along with the "first" argument to reference where in the dataset to get data |
before -
String | Cursor used along with the "last" argument to reference where in the dataset to get data |
Example
Query
query userRoles(
$first: Int,$last: Int,$after: String,$before: String
){
userRoles(
first: $first,
last: $last,
after: $after,
before: $before
){
edges {
...RootQueryToUserRoleConnectionEdgeFragment
}nodes {
...UserRoleFragment
}pageInfo {
...WPPageInfoFragment
}
}
}
Variables
{"first":987,"last":123,"after":"xyz789","before":"abc123"}
Response
{"data":{"userRoles":{"edges":[RootQueryToUserRoleConnectionEdge],"nodes":[UserRole],"pageInfo":WPPageInfo}}}