minq
minq copied to clipboard
Like with exact=True returns empty results
I have a condition where doing a transform search for all children with like filtering returns an empty result if I try to do an exact match.
pseudo hierarchy
-my_model:root
-- my_model:my_control_offset
-- my_model:my_control_space
--my_model:my_control_driven
--my_model:my_control
doing: using(my_model:root).get(AllChildren).short().like('my_control') results in: my_control, my_control_driven, my_control_space, my_control_offset
doing: using(my_model:root).get(AllChildren).short().like('my_control', exact=True) results in: nothing
I think the correct behavior should be a returned result of: my_control Please let me know if this is a bug or if I am not using the api correctly.