Skip to main content

CommunicationRequest Connection

Get CommunicationRequest resources with pagination.

Query

query CommunicationRequestConnection($first: Int, $after: String) {
communicationrequestConnection(first: $first, after: $after) {
edges {
node {
id
# Add other fields as needed
}
}
pageInfo {
hasNextPage
endCursor
}
totalCount
}
}

Parameters

  • first: Number of items to retrieve
  • after: Cursor for pagination

Return Type

Returns a connection object containing CommunicationRequest resources.