Skip to content

Commit e218481

Browse files
authored
Fixes (#133)
1 parent 52bcff6 commit e218481

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
Loading

integration-guides/supabase-+-powersync.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ For web apps, this guide assumes that you have [pnpm](https://pnpm.io/installati
3333

3434
Upon successful integration of Supabase + PowerSync, your system architecture will look like this: (click to enlarge image)
3535
<Frame>
36-
<img src="/images/integration-1.png"/>
36+
<img src="/images/integration-guides/supabase/diagram-docs-supabase-integration.png"/>
3737
</Frame>
3838
The local SQLite database embedded in the PowerSync SDK is automatically kept in sync with the Supabase Postgres database (based on configured sync rules as you will see later in this guide). Client-side data modifications are persisted in the local SQLite database as well as stored in an upload queue that gets processed via the Supabase client library when network connectivity is available. Therefore reads and writes can happen in the app regardless of whether the user is online or offline, by using the local SQLite database.
3939

4040
<Info>
41-
For more details on PowerSync's general architecture, [see here](/architecture/architecture-overview.mdx).
41+
For more details on PowerSync's general architecture, [see here](/architecture/architecture-overview).
4242
</Info>
4343

4444
## Integration Guide/Tutorial Overview

resources/faq.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ mode: wide
4141
**Right now, we don’t have support for replicating data via APIs.** A workaround would be to have custom code to replicate the data from the API to a PostgreSQL instance, then sync that with PowerSync. We may add a way in the future to replicate the data directly from an API to the PowerSync Service, without a database in between.
4242
</Accordion>
4343

44-
<Accordion title="Are "live queries" supported?">
44+
<Accordion title="Are live queries supported?">
4545
**Yes.** The PowerSync client SDKs support real-time streaming of changes, and can automatically rerun a query if the underlying data changed.It does not support incrementally updating the result set yet, but it should be fast if the query is indexed appropriately, and the result set is small enough.
4646
</Accordion>
4747

0 commit comments

Comments
 (0)