We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ffc27a commit ef778deCopy full SHA for ef778de
src/queryBuilder.ts
@@ -140,7 +140,7 @@ export default class QueryBuilder {
140
const value = data[key];
141
142
// Ignore IDs and connections and empty fields
143
- if (!relations.has(key) && !model.skipField(key) && key !== 'id' && value !== null) {
+ if (!relations.has(key) && !key.startsWith('$') && key !== 'id' && value !== null) {
144
returnValue[key] = value;
145
}
146
});
0 commit comments