You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For advanced use-cases, user might want to use any of the field values as identifier instead of _id. Eg instead of _id we want to use student_id as primary key.
Currently,
_id
is generated and used as primary identifier for a data-row(?). For example, now for data inserted , the Primary IDthe Identifier is random generated identifier
_id
,For advanced use-cases, user might want to use any of the field values as identifier instead of
_id
. Eg instead of_id
we want to usestudent_id
as primary key.Possible solutions
IdentifierField
(string) in the Datum structwunderDB/model/models.go
Lines 42 to 46 in e7b8cdd
identifier
required
array of the schema - request valid only if it is there or if not there can add through code._id
or any other custom field,data[identifier.value]
if not insert the dataThe text was updated successfully, but these errors were encountered: