GET v1/grid/nodes/edges?page={page}&pageSize={pageSize}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| page | integer |
Default value is 1 |
|
| pageSize | integer |
Default value is 100 |
Body Parameters
None.
Response Information
Resource Description
PagedResultOfEdgeDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Items | Collection of EdgeDto |
None. |
|
| TotalCount | integer |
None. |
|
| Page | integer |
None. |
|
| PageSize | integer |
None. |
|
| HasNextPage | boolean |
None. |
|
| HasPreviousPage | boolean |
None. |
|
| TotalPages | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Items": [
{
"SourceNodeId": "66fe7d19-ea81-4a44-807a-602bfc8f813d",
"TargetNodeId": "c3106273-859d-4644-8a22-e892472aff13",
"EdgeType": "sample string 3",
"Weight": 4.0
},
{
"SourceNodeId": "66fe7d19-ea81-4a44-807a-602bfc8f813d",
"TargetNodeId": "c3106273-859d-4644-8a22-e892472aff13",
"EdgeType": "sample string 3",
"Weight": 4.0
}
],
"TotalCount": 1,
"Page": 2,
"PageSize": 3,
"HasNextPage": false,
"HasPreviousPage": true,
"TotalPages": 1
}