The process of analysing an article to extract the keywords and entities is the first step in gathering recommendations for articles. You will need to provide the article title and body, and a set or "wordings" will be returned.
Wordings are the keywords that are extracted from the article, a user can then filter these or you can pass them back to match against videos.
Sample query:
query($input: TextAnalysisInput){
analyseText(input: $input) {
wordings
}
}
With variables:
{
"input": {
"title": [ARTICLE TITLE],
"body": [ARTICLE BODY],
"articleMetadata": {
"publisherId": [OOVVVUU ORGANISATION ID],
"cmsArticleId": [ARTICLE/POST ID, IF KNOWN],
"masthead": [PUBLISHED DOMAIN NAME, IF KNOWN]
}
}
}