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://idp.cdq.com/_mock/apis/knowledge-graph-api/api-v1/
https://api.corporate-data-league.ch/knowledge-graph-api/soap/v1/
https://api.corporate-data-league.ch/knowledge-graph-api/
- Mock server
https://idp.cdq.com/_mock/apis/knowledge-graph-api/api-v1/knowledgegraphs/{knowledgeGraphId}/models/{modelId}/concepts/{conceptId}/history
- Production SOAP
https://api.corporate-data-league.ch/knowledge-graph-api/soap/v1/knowledgegraphs/{knowledgeGraphId}/models/{modelId}/concepts/{conceptId}/history
- Production
https://api.corporate-data-league.ch/knowledge-graph-api/knowledgegraphs/{knowledgeGraphId}/models/{modelId}/concepts/{conceptId}/history
curl -i -X GET \
-u <username>:<password> \
https://idp.cdq.com/_mock/apis/knowledge-graph-api/api-v1/knowledgegraphs/1/models/1/concepts/1/history \
-H 'X-Credential-Username: 87b1bdb1-ba87-4522-b363-c5a0e6e917b3'{ "summary": "Returns list of edits related does concept.\n", "value": "[{\"id\":2,\"status\":\"FINISHED\",\"startDate\":\"2021-12-30T08:51:45\",\"endDate\":\"2021-12-30T08:51:45\",\"demo_user\":\"demo_user\",\"description\":\"string\",\"log\":null},{\"id\":3,\"status\":\"FINISHED\",\"startDate\":\"2021-12-30T08:51:47\",\"endDate\":null,\"demo_user\":\"demo_user\",\"description\":\"Add concept values\",\"log\":null},{\"id\":4,\"status\":\"FINISHED\",\"startDate\":\"2021-12-30T08:52:14\",\"endDate\":null,\"demo_user\":\"demo_user\",\"description\":\"Change concept description\",\"log\":null}]\n" }
- Mock server
https://idp.cdq.com/_mock/apis/knowledge-graph-api/api-v1/knowledgegraphs/{knowledgeGraphId}/models/{modelId}/concepts/{conceptId}/history/{editId}
- Production SOAP
https://api.corporate-data-league.ch/knowledge-graph-api/soap/v1/knowledgegraphs/{knowledgeGraphId}/models/{modelId}/concepts/{conceptId}/history/{editId}
- Production
https://api.corporate-data-league.ch/knowledge-graph-api/knowledgegraphs/{knowledgeGraphId}/models/{modelId}/concepts/{conceptId}/history/{editId}
curl -i -X GET \
-u <username>:<password> \
https://idp.cdq.com/_mock/apis/knowledge-graph-api/api-v1/knowledgegraphs/1/models/1/concepts/1/history/1 \
-H 'X-Credential-Username: 87b1bdb1-ba87-4522-b363-c5a0e6e917b3'{ "summary": "Status of a concept at point of time", "value": "{\"concept\":{\"id\":\"110\",\"url\":\"https://cdq.com/concept/2\",\"lastModifier\":\"demo_user\",\"lastModificationDate\":\"2021-12-30T08:52:14\"},\"conceptValues\":[{\"propertyConcept\":{\"id\":111,\"url\":\"https://nowar.com/hasName\",\"creator\":\"demo_user\",\"creationDate\":\"2021-12-30T08:51:47\",\"deletionDate\":null},\"urlPropertyValues\":null,\"literalPropertyValues\":{\"value\":[{\"id\":136,\"literal\":\"John\",\"datatypeUrl\":\"xsd:string\",\"lang\":\"pl\",\"creator\":\"demo_user\",\"creationDate\":\"2021-12-30T08:51:47\",\"deletionDate\":\"2021-12-30T08:52:14\"}]}},{\"propertyConcept\":{\"id\":114,\"url\":\"https://cdq.com/value/hasSurname\",\"creator\":\"demo_user\",\"creationDate\":\"2021-12-30T08:52:14\",\"deletionDate\":null},\"urlPropertyValues\":null,\"literalPropertyValues\":{\"value\":[{\"id\":138,\"literal\":\"Smith\",\"datatypeUrl\":\"xsd:string\",\"lang\":\"en\",\"creator\":\"demo_user\",\"creationDate\":\"2021-12-30T08:52:14\",\"deletionDate\":null}]}},{\"propertyConcept\":{\"id\":115,\"url\":\"https://cdq.com/value/hasSecondName\",\"creator\":\"demo_user\",\"creationDate\":\"2021-12-30T08:52:14\",\"deletionDate\":null},\"urlPropertyValues\":null,\"literalPropertyValues\":{\"value\":[{\"id\":139,\"literal\":\"Pablo\",\"datatypeUrl\":\"xsd:string\",\"lang\":\"pl\",\"creator\":\"demo_user\",\"creationDate\":\"2021-12-30T08:52:14\",\"deletionDate\":null}]}},{\"propertyConcept\":{\"id\":112,\"url\":\"https://cdq.com/hasName\",\"creator\":\"demo_user\",\"creationDate\":\"2021-12-30T08:52:14\",\"deletionDate\":null},\"urlPropertyValues\":{\"value\":[{\"id\":137,\"url\":\"https://cdq.com/propertyNames\",\"creator\":\"demo_user\",\"creationDate\":\"2021-12-30T08:52:14\",\"deletionDate\":null}]},\"literalPropertyValues\":null}]}\n" }