Salesforce · Schema
AccountswithCursorsPagination
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales
Properties
| Name | Type | Description |
|---|---|---|
| data | object | |
| errors | array |
JSON Schema
{
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"uiapi": {
"type": "object",
"properties": {
"query": {
"type": "object",
"properties": {
"Account": {
"type": "object",
"properties": {
"edges": {
"type": "array",
"description": "",
"example": [],
"items": {
"type": "object"
}
},
"totalCount": {
"type": "integer",
"example": 42
},
"pageInfo": {
"type": "object",
"properties": {
"hasNextPage": {
"type": "object"
},
"hasPreviousPage": {
"type": "object"
},
"startCursor": {
"type": "object"
},
"endCursor": {
"type": "object"
}
},
"required": [
"hasNextPage",
"hasPreviousPage",
"startCursor",
"endCursor"
]
}
},
"required": [
"edges",
"totalCount",
"pageInfo"
]
}
},
"required": [
"Account"
]
}
},
"required": [
"query"
]
}
},
"required": [
"uiapi"
]
},
"errors": {
"type": "array",
"description": "",
"example": [],
"items": {
"type": "string"
}
}
},
"required": [
"data",
"errors"
],
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "AccountswithCursorsPagination"
}