-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
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
[FEATURE] allow using --like
option similar to SQL's LIKE
logic
#987
Closed
1 of 7 tasks
Labels
enhancement
New feature or request; requires increasing the minor version of mcdev. Jira issue-type "Story"
PRIORITY
used for professional service clients
Milestone
Comments
key
allow using --filter
similar to SQL's LIKE
logic
JoernBerkefeld
added a commit
that referenced
this issue
Jun 27, 2023
JoernBerkefeld
added a commit
that referenced
this issue
Jun 27, 2023
6 tasks
key
allow using --filter
similar to SQL's LIKE
logic--like
option similar to SQL's LIKE
logic
6 tasks
JoernBerkefeld
added a commit
that referenced
this issue
Jun 28, 2023
JoernBerkefeld
added a commit
that referenced
this issue
Jun 28, 2023
JoernBerkefeld
added a commit
that referenced
this issue
Jun 28, 2023
JoernBerkefeld
added a commit
that referenced
this issue
Jun 29, 2023
JoernBerkefeld
added a commit
that referenced
this issue
Jun 29, 2023
Closed by #1006. |
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
enhancement
New feature or request; requires increasing the minor version of mcdev. Jira issue-type "Story"
PRIORITY
used for professional service clients
We often have to update a large subset of metadata, e.g. disable certain users but have issues finding the right ones.
Should be supported by:
out of scope:
why? because having support in retrieve alone allows us to run deploy and buildX based on the result already.
logic:
solution:
--like.field "%abc"
--> Match a string that ends with abc, similar to LIKE '%abc'--like.field "abc%"
--> Match a string that starts with abc, similar to LIKE 'abc%'https://stackoverflow.com/a/18418386/818732:
https://www.w3schools.com/sql/sql_like.asp:
The LIKE operator is used in a WHERE clause to search for a specified pattern in a column.
There are two wildcards often used in conjunction with the LIKE operator:
The percent sign (%) represents zero, one, or multiple characters
The underscore sign (_) represents one, single character
The text was updated successfully, but these errors were encountered: