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.
null
nullValue
undefined
1 parent 656cbd6 commit 500945dCopy full SHA for 500945d
src/collections/deserialize/index.ts
@@ -329,7 +329,7 @@ export class Deserialize {
329
if (value.blobValue !== undefined) return value.blobValue;
330
if (value.geoValue !== undefined) return value.geoValue;
331
if (value.phoneValue !== undefined) return value.phoneValue;
332
- if (value.nullValue !== undefined) return undefined;
+ if (value.nullValue !== undefined) return null;
333
throw new WeaviateDeserializationError(`Unknown value type: ${JSON.stringify(value, null, 2)}`);
334
}
335
0 commit comments