pub fn jsonb_object_field<'a>(v: JsonbRef<'a>, p: &str) -> Option<JsonbRef<'a>>
Extracts JSON object field with the given key.
jsonb -> text → jsonb
query T select '{"a": {"b":"foo"}}'::jsonb -> 'a'; ---- {"b": "foo"}