triplit
triplit copied to clipboard
A full-stack, syncing database that runs on both server and client. Pluggable storage (indexeddb, sqlite, durable objects), syncs over websockets, and works with your favorite framework (React, Solid,...
Certain APIs dont have easily accessible query builders. They dont really use a lot of state, so we could export them to make them accessible. Or add a `query` api...
Feel free to close this issue if this is documented somewhere and I missed it. I like the idea here but I found nothing about android support. Is the idea...
Moving discussion of RN specific support from [this issue](https://github.com/aspen-cloud/triplit/issues/36) to here.
Example: ``` const client = new RemoteClient({ schema }); const result = await client.fetch({ collectionName: 'todos', }); // Result is Map ``` I think we need to properly type the...
Although I can hook into the connection state, I don't have much information as to WHY a client cannot connect. For example, I may have a malformed connection token, but...
Example: The inferred type of 'schema' cannot be named without a reference to '../node_modules/@triplit/db/dist/types/data-types/boolean'. This is likely not portable. A type annotation is necessary.
e.g. the `todo` was leftover from the previous template example.
In a query like this: ```tsx useQuery( triplit, triplit .query('directors') .include('allFilms', (rel) => rel('allFilms').include('actors').build()) ); ``` In the `ClientQueryBuilder class`, why not expose the current `Q` Query and a reference...
Hi there, I'm using triplit to store around 400 rows of data, and I am seeing a client-side fetch time of around 2000ms when fetching for the first time with...
Hi. I'm trying to use `query.order`, but it seems like it is case-sensitive (`A...` comes before `a...`). Is there anyway to make the query case-insensitive (`a...` and `A...` are treated...