Skip to content

Commit

Permalink
fix: 🐛 fix issue regarding missing type information for node attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinxin90 committed Feb 1, 2021
1 parent 7fecd84 commit 7cf6119
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/controllers/QueryGraphHandler/knowledge_graph.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ module.exports = class KnowledgeGraph {
attributes: [
{
name: "equivalent_identifiers",
value: helper._getInputEquivalentIds(record)
value: helper._getInputEquivalentIds(record),
type: "biolink:id"
}
]
}
Expand All @@ -42,7 +43,8 @@ module.exports = class KnowledgeGraph {
attributes: [
{
name: "equivalent_identifiers",
value: helper._getOutputEquivalentIds(record)
value: helper._getOutputEquivalentIds(record),
type: "biolink:id"
}
]
}
Expand Down

0 comments on commit 7cf6119

Please sign in to comment.