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 0e1830a commit 8218f52Copy full SHA for 8218f52
src/queryBuilder.ts
@@ -227,8 +227,8 @@ export default class QueryBuilder {
227
Object.keys(args).forEach((key: string) => {
228
let value: any = args[key];
229
230
- // Ignore ids and connections
231
- if (!(value instanceof Array || (key === 'id' && !allowIdFields))) {
+ // Ignore null fields, ids and connections
+ if (value && !(value instanceof Array || (key === 'id' && !allowIdFields))) {
232
let typeOrValue: any = '';
233
234
if (signature) {
0 commit comments