commontoolsinc / synopsys

datastore service for datums
2 stars 1 forks source link

Create datalog query from JSON Schema or Typescript schema #15

Open gordonbrander opened 1 month ago

gordonbrander commented 1 month ago
seefeldb commented 1 month 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 };