Merge pull request #1817 from eikek/1808-fix-linked-items-query

Fix query generated for linked queries
This commit is contained in:
mergify[bot] 2022-10-31 21:44:30 +00:00 committed by GitHub
commit 54ee80932c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -207,14 +207,14 @@ render q =
"incoming:" ++ boolStr (dir == Data.Direction.Incoming)
ItemIdIn ids ->
"id~=" ++ String.join "," ids
"id~=" ++ String.join "," (List.map quoteStr ids)
ItemIdMatch id ->
if String.length id == 47 then
"id" ++ attrMatch Eq ++ id
"id" ++ attrMatch Eq ++ quoteStr id
else
"id" ++ attrMatch Like ++ Util.String.appendIfAbsent "*" id
"id" ++ attrMatch Like ++ (quoteStr <| Util.String.appendIfAbsent "*" id)
ItemName m str ->
"name" ++ attrMatch m ++ quoteStr str