postgraphile 4.12.11 → 4.12.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -5
- package/package.json +1 -1
- package/sponsors.json +20 -21
package/README.md
CHANGED
|
@@ -27,16 +27,16 @@ And please give some love to our featured sponsors 🤩:
|
|
|
27
27
|
|
|
28
28
|
<table><tr>
|
|
29
29
|
<td align="center"><a href="https://surge.io/"><img src="https://graphile.org/images/sponsors/surge.png" width="90" height="90" alt="Surge" /><br />Surge</a> *</td>
|
|
30
|
-
<td align="center"><a href="https://
|
|
31
|
-
<td align="center"><a href="http://chads.website"><img src="https://graphile.org/images/sponsors/chadf.png" width="90" height="90" alt="Chad Furman" /><br />Chad Furman</a> *</td>
|
|
30
|
+
<td align="center"><a href="https://www.netflix.com/"><img src="https://graphile.org/images/sponsors/Netflix.png" width="90" height="90" alt="Netflix" /><br />Netflix</a> *</td>
|
|
32
31
|
<td align="center"><a href="https://www.the-guild.dev/"><img src="https://graphile.org/images/sponsors/theguild.png" width="90" height="90" alt="The Guild" /><br />The Guild</a> *</td>
|
|
32
|
+
<td align="center"><a href="http://chads.website"><img src="https://graphile.org/images/sponsors/chadf.png" width="90" height="90" alt="Chad Furman" /><br />Chad Furman</a> *</td>
|
|
33
33
|
</tr><tr>
|
|
34
34
|
<td align="center"><a href="https://qwick.com/"><img src="https://graphile.org/images/sponsors/qwick.png" width="90" height="90" alt="Qwick" /><br />Qwick</a> *</td>
|
|
35
35
|
<td align="center"><a href="https://www.fanatics.com/"><img src="https://graphile.org/images/sponsors/fanatics.png" width="90" height="90" alt="Fanatics" /><br />Fanatics</a> *</td>
|
|
36
|
-
<td align="center"><a href="https://graphcdn.io/"><img src="https://graphile.org/images/sponsors/GraphCDN.png" width="90" height="90" alt="GraphCDN" /><br />GraphCDN</a> *</td>
|
|
37
36
|
<td align="center"><a href="https://dovetailapp.com/"><img src="https://graphile.org/images/sponsors/dovetail.png" width="90" height="90" alt="Dovetail" /><br />Dovetail</a> *</td>
|
|
38
|
-
</tr><tr>
|
|
39
37
|
<td align="center"><a href="https://www.enzuzo.com/"><img src="https://graphile.org/images/sponsors/enzuzo.png" width="90" height="90" alt="Enzuzo" /><br />Enzuzo</a> *</td>
|
|
38
|
+
</tr><tr>
|
|
39
|
+
<td align="center"><a href="https://stellate.co/"><img src="https://graphile.org/images/sponsors/Stellate.png" width="90" height="90" alt="Stellate" /><br />Stellate</a> *</td>
|
|
40
40
|
<td align="center"><a href="https://politicsrewired.com/"><img src="https://graphile.org/images/sponsors/politics-rewired.png" width="90" height="90" alt="Politics Rewired" /><br />Politics Rewired</a></td>
|
|
41
41
|
<td align="center"><a href="https://iasql.com/"><img src="https://graphile.org/images/sponsors/IaSQL.png" width="90" height="90" alt="IaSQL" /><br />IaSQL</a></td>
|
|
42
42
|
</tr></table>
|
|
@@ -49,7 +49,7 @@ And please give some love to our featured sponsors 🤩:
|
|
|
49
49
|
|
|
50
50
|
**GraphQL** is a new way of communicating with your server. It eliminates the problems of over- and under-fetching, incorporates strong data types, has built-in introspection, documentation and deprecation capabilities, and is implemented in many programming languages. This all leads to gloriously low-latency user experiences, better developer experiences, and much increased productivity. Because of all this, GraphQL is typically used as a replacement for (or companion to) RESTful API services.
|
|
51
51
|
|
|
52
|
-
**PostgreSQL** is the self-proclaimed “world’s most advanced open source database,” with each new release
|
|
52
|
+
**PostgreSQL** is the self-proclaimed “world’s most advanced open source database,” with each new release bringing more amazing features and performance gains. Thinking of your database as a plain CRUD store is now an archaic viewpoint as modern PostgreSQL can do so much for you — from authorization with Row-Level Security (RLS, introduced in PG9.5), through Foreign Data Wrappers (FDW), to real time notifications with `LISTEN`/`NOTIFY`.
|
|
53
53
|
|
|
54
54
|
**PostGraphile** pairs these two incredible technologies together, helping you not only build applications more rapidly, but to build lightning-fast applications. PostGraphile allows you to access the power of PostgreSQL through a well designed, extensible, customisable and incredibly performant GraphQL server. It automatically detects tables, columns, indexes, relationships, views, types, functions, comments, and more - providing a GraphQL server that is highly intelligent about your data, and that automatically updates itself without restarting when you change your database schema.
|
|
55
55
|
|
|
@@ -92,6 +92,8 @@ yarn add postgraphile
|
|
|
92
92
|
npx postgraphile --help
|
|
93
93
|
```
|
|
94
94
|
|
|
95
|
+
**macOS users**: PostGraphile has used port 5000 by default for 5+ years; recently Apple decided to bind the AirPlay service to port 5000 causing a conflict. Please use the `--port` option to bind to a different port.
|
|
96
|
+
|
|
95
97
|
### Middleware
|
|
96
98
|
|
|
97
99
|
You can also use PostGraphile as [native HTTP, Connect, Express, or Koa (experimental) middleware](https://www.graphile.org/postgraphile/usage-library/), e.g.:
|
|
@@ -124,6 +126,8 @@ E.g. you might run this command (substituting the relevant variables):
|
|
|
124
126
|
docker run --init -p 5000:5000 graphile/postgraphile --connection postgres://POSTGRES_USER:POSTGRES_PASSWORD@POSTGRES_HOST:POSTGRES_PORT/POSTGRES_DATABASE --schema app_public --watch
|
|
125
127
|
```
|
|
126
128
|
|
|
129
|
+
**macOS users**: Please use a different port to avoid conflict with AirPlay.
|
|
130
|
+
|
|
127
131
|
## Read More
|
|
128
132
|
|
|
129
133
|
**Full documentation for PostGraphile is located at [graphile.org/postgraphile](https://graphile.org/postgraphile).**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "postgraphile",
|
|
3
|
-
"version": "4.12.
|
|
3
|
+
"version": "4.12.12",
|
|
4
4
|
"description": "A GraphQL schema created by reflection over a PostgreSQL schema 🐘 (previously known as PostGraphQL)",
|
|
5
5
|
"author": "Benjie Gillam <benjie@graphile.org> (https://twitter.com/benjie)",
|
|
6
6
|
"license": "MIT",
|
package/sponsors.json
CHANGED
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
"Chad Furman",
|
|
15
15
|
"Chad Furman",
|
|
16
16
|
"Chris Watland",
|
|
17
|
+
"Daniel Einspanjer",
|
|
17
18
|
"DocIQ",
|
|
18
19
|
"DocIQ",
|
|
19
20
|
"DocIQ",
|
|
@@ -35,12 +36,7 @@
|
|
|
35
36
|
"Fanatics",
|
|
36
37
|
"Fanatics",
|
|
37
38
|
"Fanatics",
|
|
38
|
-
"
|
|
39
|
-
"GraphCDN",
|
|
40
|
-
"GraphCDN",
|
|
41
|
-
"GraphCDN",
|
|
42
|
-
"GraphCDN",
|
|
43
|
-
"GraphCDN",
|
|
39
|
+
"Gamma Peak",
|
|
44
40
|
"HR-ON",
|
|
45
41
|
"HR-ON",
|
|
46
42
|
"HR-ON",
|
|
@@ -54,9 +50,6 @@
|
|
|
54
50
|
"Ian Stewart",
|
|
55
51
|
"Ian Stewart",
|
|
56
52
|
"Ian Stewart",
|
|
57
|
-
"Jack Dinker",
|
|
58
|
-
"Jack Dinker",
|
|
59
|
-
"Jack Dinker",
|
|
60
53
|
"James Rascoe",
|
|
61
54
|
"Jimmy Liu",
|
|
62
55
|
"Joe Dennis",
|
|
@@ -73,6 +66,13 @@
|
|
|
73
66
|
"Nathanael Beisiegel",
|
|
74
67
|
"Nathanael Beisiegel",
|
|
75
68
|
"Nathanael Beisiegel",
|
|
69
|
+
"Netflix",
|
|
70
|
+
"Netflix",
|
|
71
|
+
"Netflix",
|
|
72
|
+
"Netflix",
|
|
73
|
+
"Netflix",
|
|
74
|
+
"Netflix",
|
|
75
|
+
"Nicolas Penot",
|
|
76
76
|
"Notably",
|
|
77
77
|
"Notably",
|
|
78
78
|
"Notably",
|
|
@@ -106,16 +106,13 @@
|
|
|
106
106
|
"Sen Palanisami",
|
|
107
107
|
"Simon Elliott",
|
|
108
108
|
"Splitgraph",
|
|
109
|
-
"
|
|
110
|
-
"
|
|
111
|
-
"
|
|
112
|
-
"
|
|
113
|
-
"
|
|
114
|
-
"
|
|
109
|
+
"Stellate",
|
|
110
|
+
"Stellate",
|
|
111
|
+
"Stellate",
|
|
112
|
+
"Stellate",
|
|
113
|
+
"Stellate",
|
|
114
|
+
"Stellate",
|
|
115
115
|
"Stéphane Klein",
|
|
116
|
-
"SuperRare Labs",
|
|
117
|
-
"SuperRare Labs",
|
|
118
|
-
"SuperRare Labs",
|
|
119
116
|
"Surge",
|
|
120
117
|
"Surge",
|
|
121
118
|
"Surge",
|
|
@@ -131,9 +128,6 @@
|
|
|
131
128
|
"The Guild",
|
|
132
129
|
"The Guild",
|
|
133
130
|
"The Guild",
|
|
134
|
-
"William Baxter",
|
|
135
|
-
"William Baxter",
|
|
136
|
-
"William Baxter",
|
|
137
131
|
"Zentered",
|
|
138
132
|
"Zymego",
|
|
139
133
|
"domonda",
|
|
@@ -142,9 +136,14 @@
|
|
|
142
136
|
"latch.bio",
|
|
143
137
|
"latch.bio",
|
|
144
138
|
"latch.bio",
|
|
139
|
+
"liteflow-labs",
|
|
145
140
|
"nick",
|
|
146
141
|
"nigelrmtaylor",
|
|
147
142
|
"nigelrmtaylor",
|
|
148
143
|
"nigelrmtaylor",
|
|
144
|
+
"nullachtvierzehn",
|
|
145
|
+
"nullachtvierzehn",
|
|
146
|
+
"nullachtvierzehn",
|
|
147
|
+
"stlbucket",
|
|
149
148
|
"svarmony"
|
|
150
149
|
]
|