jsonExtract<T extends Object> method

Expression<T> jsonExtract<T extends Object>(
  1. String path
)

Assuming that this is an expression evaluating to a binary JSONB object or array, extracts the part of the structure identified by path.

For more details, see JsonExtensions.jsonExtract or https://www.sqlite.org/json1.html#jex.

Implementation

Expression<T> jsonExtract<T extends Object>(String path) {
  return dartCast<String>().jsonExtract(path);
}