Arsenio
04/19/2023, 3:28 PM*Compatible with:Estimated compatiblity based onthe tables used in the query.*No platforms (check your query for a possible syntax error)SELECT
    path
    json_extract(path, '$.displayName') as displayName,
  FROM
    file
  WHERE
    path LIKE '%/%/.vscode/extensions/%/package.json'
    AND type = 'regular';John Speno
04/19/2023, 3:34 PMjson_extract()Arsenio
04/19/2023, 3:35 PMLucas Rodriguez
04/19/2023, 5:00 PMfile_linesArsenio
04/19/2023, 5:03 PMKathy Satterlee
04/19/2023, 5:07 PMaugeasLucas Rodriguez
04/19/2023, 5:07 PMArsenio
04/19/2023, 5:08 PMKathy Satterlee
04/19/2023, 5:28 PMfile_linesSELECT path, split(line, ":", 1) as displayName FROM file_lines WHERE path LIKE "/Users/%%/.vscode/extensions/%/package.json" AND line LIKE '%"displayName"%' ;Kathy Satterlee
04/19/2023, 5:28 PMKathy Satterlee
04/19/2023, 5:30 PMJohn Speno
04/19/2023, 5:39 PMKathy Satterlee
04/19/2023, 5:49 PMfritz
04/19/2023, 7:59 PMkolide_jsonIgnacio
04/20/2023, 10:53 AM