We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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
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.
The text was updated successfully, but these errors were encountered: