We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 746866a commit 4443659Copy full SHA for 4443659
1 file changed
src/utils.ts
@@ -91,7 +91,7 @@ const rdfGraphToNodes = (store: rdflib.Store): GraphData => {
91
// Create links for relevant relationships
92
const includesElement = CONFIG.relationProperties.some((item: string) => pred.includes(item));
93
if (includesElement) {
94
- const isLiteral = statement.object.termType === "literal";
+ const isLiteral = statement.object.termType === "Literal";
95
96
if (!isLiteral) {
97
const group = predToGroup(pred);
0 commit comments