Module json_get

Module json_get 

Source

Macrosยง

json_get ๐Ÿ”’
Get the value from the JSONB by the given path and return it as specified type. If the path does not exist or the value is not the type specified, return NULL.

Structsยง

JsonGetBool
Get the value from the JSONB by the given path and return it as a boolean.
JsonGetFloat
Get the value from the JSONB by the given path and return it as a float.
JsonGetInt
Get the value from the JSONB by the given path and return it as an integer.
JsonGetObject ๐Ÿ”’
Get the object from JSON value by path.
JsonGetString
Get the value from the JSONB by the given path and return it as a string.

Functionsยง

get_json_by_path ๐Ÿ”’