For my use case, I would like to write a general rule containing a concept, but the concept shall be different or changeable per query.
Firstly, I tried to assign it to a variable.
u: ()
$var = ~concept_1
u: ($var)
I wish this equals to u:(~concept_1), but it does not.
Then, I tried to put it to a table, and I made a query. It does not work neither.
table: mytbl ()
^createfact(mysub myverb ^concept_1)
topic: mytopic []
u: ()
@9 = ^query(direct_sv mysub myverb ?)
u: (@9object)
does not work neither.
Is there a good solution or alternative?