Skip to content

Commit

Permalink
✨ support mixed queries
Browse files Browse the repository at this point in the history
  • Loading branch information
vacodoceo committed Jul 10, 2024
1 parent bfd30a0 commit 69b6cd6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -153,4 +153,4 @@
"instrument": false,
"sourceMap": false
}
}
}
2 changes: 1 addition & 1 deletion src/adapters/adapters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ export class Adapters implements LibAdapters {
};
} else {
// clean copy to avoid mutating things outside our scope
query = { ...query };
query = { ...query, values: query.values || values };
}
if (!query.values?.length) {
return query;
Expand Down

0 comments on commit 69b6cd6

Please sign in to comment.