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 mapping name@en with _id, via keymap, we have to use "Lithuania" value, not {"en": "Lithuania"}.
For storing data in internal PostgreSQL backend, we should store reference data in country.name@en column of string type, because reference is using string part of text type, not the text type itself, bet a part of it.
There should be a distinction made, that text type is a complex type, while string type is a simple type and can go independently or as part of text type.
For data formats, that support complex types, we use a native format form, for example, if we refer to name@en in JSON we should encode it as {"name": {"en": "Lithuania"}}.
If format does not support complex type, like tabular formats, we use "name@en" as column name.
There might be a slight confusion with implicit and explicit forms of text type. Even if text type is a complex type, it can be expressed in two ways:
explicit form - {"en": "Lithuania"}
implicit form - "Lithuania", where language tag is selected using content negotiation
For example:
Here we use
name@en
as primary key and as an external key, withlevel
set to 3, that means, we have to use original column values instead of_id
.In this case data for writing and reading of
City
model should look like this:For mapping
name@en
with_id
, via keymap, we have to use"Lithuania"
value, not{"en": "Lithuania"}
.For storing data in internal PostgreSQL backend, we should store reference data in
country.name@en
column ofstring
type, because reference is usingstring
part oftext
type, not thetext
type itself, bet a part of it.There should be a distinction made, that
text
type is a complex type, whilestring
type is a simple type and can go independently or as part oftext
type.For data formats, that support complex types, we use a native format form, for example, if we refer to
name@en
in JSON we should encode it as{"name": {"en": "Lithuania"}}
.If format does not support complex type, like tabular formats, we use
"name@en"
as column name.There might be a slight confusion with implicit and explicit forms of
text
type. Even iftext
type is a complex type, it can be expressed in two ways:{"en": "Lithuania"}
"Lithuania"
, where language tag is selected using content negotiationRelated
The text was updated successfully, but these errors were encountered: