aboutsummaryrefslogtreecommitdiffstats
path: root/src/statement.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/statement.c')
-rw-r--r--src/statement.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/statement.c b/src/statement.c
index 51788e05..0ec6520a 100644
--- a/src/statement.c
+++ b/src/statement.c
@@ -28,7 +28,8 @@ is_resource(const SerdNode* const node)
{
const SerdNodeType type = serd_node_type(node);
- return type == SERD_URI || type == SERD_CURIE || type == SERD_BLANK;
+ return type == SERD_URI || type == SERD_CURIE || type == SERD_BLANK ||
+ type == SERD_VARIABLE;
}
bool