Lets say there is a class "Food" containing individuals "Grain" and "Fruit" .
If i want to select Grain i can assign a food_type
data Property to individuals
(class) Food
(ind_1) Grain food_type ---> "grain_food"
(ind_2) Fruit food_type ---> "fruit_food"
and run this code:
Food(?x) ^ food_type(?x,"grain_food") -> sqwrl:select(?x)
but what if i want to do this job (select Grain
individual) without the needing to food_type
property? is it possible to directly point to a specific individual just by its name?