commontoolsinc / synopsys

datastore service for datums
0 stars 1 forks source link

Create datalog query from JSON Schema or Typescript schema #15

Open gordonbrander opened 2 days ago

gordonbrander commented 2 days ago
seefeldb commented 1 day ago

A useful first step to unblock integration is just the ability to query open-ended JSON, i.e. what in typescript is:

type JSONValue = | string | number | boolean | null | JSONValue[] | { [key: string]: JSONValue };