Can you give me an example of how to use the riccochet_s<v_S query?
How many arms (_0) does a person (_1) have? given: (person component (arm component 2))
Here is my attempt, which does not work
#query(direct_svo subject verb object count fromset toset auxdata auxdata)
u: ("xxx5")
@0 = ^query(riccochet_s<v_S person component ? 1 ? ? arm component)
if (@0)
{
person has @0object arms .
}
else
{
query failed
}
What I am hoping to do, is get the (arm component 2) fact, so I can delete it and replace it with another fact. I think riccochet_s<v_S should able to do that.