A Knowledge Graph is a graph-based data model representation of knowledge within a domain. In other words, it contains nodes and edges that represent entities and the relationships between them. The API should then enable the creation, update, or query with regard to these graphs and their models.
Knowledge Graph API (1)
https://developer.cdq.com/_mock/apis/knowledge-graph-api/api-v1/
https://api.cdq.com/knowledge-graph/rest/
The number of the page to read. Parameter isn't required, by default, set to '0'.
Maximum number of elements on the page to read. Parameter isn't required. Can't be negative, by default, set to 10
.
Allows changing the default sorting order (ASC) to desire by user.
Enum Value | Description |
---|---|
DESC | Sort in descending order. |
ASC | Sort in ascending order. |
If enabled modification date will be determined against concept values.
- Mock server
https://developer.cdq.com/_mock/apis/knowledge-graph-api/api-v1/knowledgegraphs/{knowledgeGraphId}/models/{modelId}/concepts
- Production
https://api.cdq.com/knowledge-graph/rest/knowledgegraphs/{knowledgeGraphId}/models/{modelId}/concepts
- cURL
- Java
- JavaScript
- Python
- Node.js
curl -i -X GET \
https://developer.cdq.com/_mock/apis/knowledge-graph-api/api-v1/knowledgegraphs/1/models/1/concepts \
-H 'X-API-KEY: YOUR_API_KEY_HERE' \
-H 'X-Credential-Username: 87b1bdb1-ba87-4522-b363-c5a0e6e917b3'
OK
List of concepts.
URL to the documentation which summarizes all details of the Business Partner Concepts.
{ "summary": "Paginated response of concepts saved inside a model.", "value": "{\"pageSize\":10,\"page\":0,\"values\":[{\"id\":\"101\",\"url\":\"https://www.cdq.com/Configuration_parameters/CDQ_BASEURL\",\"lastModifier\":\"database-creation\",\"lastModificationDate\":\"2021-12-29T13:56:50\"},{\"id\":\"102\",\"url\":\"https://www.cdq.com/Has_value\",\"lastModifier\":\"database-creation\",\"lastModificationDate\":\"2021-12-29T13:56:50\"}],\"total\":2}\n" }