I'm currently trying to learn how to use Microsoft Knowledge API, specifically the Graph Search method. I want to try and retrieve all the publications made by a specified journal initially, and then try and provide a time-frame for results returned.
Current request:
{
"path": "/author/PaperIDs/paper/JournalID/journal",
"author": {
"type": "Author",
"select": [ "DisplayAuthorName" ],
"match": { "Name": "jim miles" }
},
"paper": {
"type": "Paper",
"select": [ "OriginalTitle", "CitationCount", "PublishYear", "DOI", "OriginalVenue" , "JournalID"],
"return": { "PublishYear": { "gt": 2013, "lt": 2015 } }
},
"journal": {
"type": "Journal",
"select": [ "Name", "NormalizedName", "NormalizedShortName"]
}
}
Documents used to get this far:
Schema
API Reference
What is missing from my understanding to create this request? Is there another set of documentation available, as the Microsoft references lack basic information such as lists of attributes available for a given context (i.e. journal).