Dealing with Nullable Field in Database Schema
TLDR Andrew asked how to represent a nullable field in schema. Jason advised setting the field as optional: true
.

Nov 11, 2022 (10 months ago)
Andrew
10:39 PMJason
10:39 PMoptional: true
in the schema
Andrew
10:44 PMTypesense
Indexed 2764 threads (79% resolved)
Similar Threads
Handling `string | null` Fields in Schema
gab asked about handling `string | null` fields in schemas. Kishore Nallan suggested they could be marked as optional, so either the field doesn't exist or the value can be null.
Resolving NULL Values Issue in Typesense Project
andy thanked Kishore for helping with their typesense project. They shared a problem regarding NULL values that they resolved. Kishore Nallan suggested marking the field as optional for addressing such issues.

Troubleshooting Typesense 400 Error with Null Fields
sonu was encountering a 400 error due to null fields during Typesense indexing. Jason suggested upgrading to a recent version, removing null fields, and marking potentially null fields as `optional: true`. gab shared a similar issue and workaround.