@budibase/server 2.7.9 → 2.7.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/query.js CHANGED
@@ -7067,6 +7067,9 @@ var _QueryBuilder = class {
7067
7067
  return contains(key, value, "OR");
7068
7068
  };
7069
7069
  const oneOf = (key, value) => {
7070
+ if (!value) {
7071
+ return `*:*`;
7072
+ }
7070
7073
  if (!Array.isArray(value)) {
7071
7074
  if (typeof value === "string") {
7072
7075
  value = value.split(",");