sqlgg.json_path
Sqlgg_json_path.Ast
ppx_sqlgg
sqlgg.lib
sqlgg.traits
type array_index =
| Index of int
| Wildcard
| Last
| LastOffset of int
type range = {
start_idx : array_index;
end_idx : array_index;
}
type path_leg =
| Member of string
| ArrayAccess of array_index
| ArrayRange of range
| MemberWildcard
| DoubleWildcard
type t = {
scope : string;
legs : path_leg list;
module Syntax : sig ... end