Skip to content

Commit cd29153

Browse files
committed
Deploy 20230414_090035
1 parent bc1b217 commit cd29153

3 files changed

Lines changed: 8 additions & 3 deletions

File tree

news/rss.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Graphile News]]></title><description><![CDATA[Community funded open source utilities to build powerful, performant and extensible applications rapidly]]></description><link>https://graphile.org</link><generator>GatsbyJS</generator><lastBuildDate>Mon, 13 Mar 2023 23:27:19 GMT</lastBuildDate><item><title><![CDATA[Step Aside Resolvers: a New Approach to GraphQL Execution]]></title><description><![CDATA[2022-12-07 This week at GraphQL Galaxy, Benjie introduced his
1+
<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Graphile News]]></title><description><![CDATA[Community funded open source utilities to build powerful, performant and extensible applications rapidly]]></description><link>https://graphile.org</link><generator>GatsbyJS</generator><lastBuildDate>Fri, 14 Apr 2023 09:01:01 GMT</lastBuildDate><item><title><![CDATA[Step Aside Resolvers: a New Approach to GraphQL Execution]]></title><description><![CDATA[2022-12-07 This week at GraphQL Galaxy, Benjie introduced his
22
vision for a new general-purpose GraphQL execution strategy whose holistic…]]></description><link>https://graphile.org/news/20221208-graphql-galaxy/</link><guid isPermaLink="false">https://graphile.org/news/20221208-graphql-galaxy/</guid><pubDate>Thu, 08 Dec 2022 01:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&lt;em&gt;2022-12-07&lt;/em&gt;&lt;/p&gt;
33
&lt;p&gt;This week at &lt;a href=&quot;https://graphqlgalaxy.com/&quot;&gt;GraphQL Galaxy&lt;/a&gt;, Benjie introduced his
44
vision for a new general-purpose GraphQL execution strategy whose holistic

page-data/postgraphile/live-queries/page-data.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

postgraphile/live-queries/index.html

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,12 @@ <h3 id="limitations"><a href="#limitations" aria-label="limitations permalink" c
287287
changes to results queried from tables, but cannot currently detect changes to
288288
results queried from views and functions. In particular, computed columns are
289289
not kept up to date (although they are re-calculated whenever a table update
290-
triggers the subscription). Monitored tables must also use primary keys.</p>
290+
triggers the subscription).</p>
291+
<p>Monitored tables must also use primary keys. Problems may arise if such key is a
292+
<code class="language-text">bigint</code> or <code class="language-text">bigserial</code> due to how PostgreSQL serializes these to JSON as a
293+
number (which is allowed by the JSON spec), but JavaScript's JSON.parse will not
294+
maintain precision when parsing them, leading to potential divergence. We
295+
recommend the key to be either a regular <code class="language-text">int</code> or a <code class="language-text">uuid</code>.</p>
291296
<h3 id="amazon-rds"><a href="#amazon-rds" aria-label="amazon rds permalink" class="anchor"><svg aria-hidden="true" focusable="false" height="16" version="1.1" viewBox="0 0 16 16" width="16"><path fill-rule="evenodd" d="M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z"></path></svg></a>Amazon RDS</h3>
292297
<p>Configuring Live Queries on Amazon RDS is slightly different, as it's a managed
293298
service. (Also note that RDS runs a slightly out-of-date <code class="language-text">wal2json</code>.)</p>

0 commit comments

Comments
 (0)