graphile-plugin-connection-filter-postgis 1.0.2 → 1.0.3
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 +2 -2
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -34,12 +34,12 @@ npm install graphile-plugin-connection-filter-postgis
|
|
|
34
34
|
|
|
35
35
|
Requires `postgraphile@^4.5.0` and the following plugins appended prior to this plugin:
|
|
36
36
|
|
|
37
|
-
-
|
|
37
|
+
- `graphile-postgis@^0.1.3`
|
|
38
38
|
- `graphile-plugin-connection-filter@^2.0.0`
|
|
39
39
|
|
|
40
40
|
```ts
|
|
41
41
|
import PostGISFilterPlugin from 'graphile-plugin-connection-filter-postgis';
|
|
42
|
-
import PostGISPlugin from '
|
|
42
|
+
import PostGISPlugin from 'graphile-postgis';
|
|
43
43
|
import ConnectionFilterPlugin from 'graphile-plugin-connection-filter';
|
|
44
44
|
|
|
45
45
|
app.use(
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "graphile-plugin-connection-filter-postgis",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "PostGIS filtering options in PostGraphile",
|
|
5
5
|
"author": "Matt Bretl",
|
|
6
6
|
"homepage": "https://github.com/launchql/launchql",
|
|
@@ -40,14 +40,14 @@
|
|
|
40
40
|
"launchql"
|
|
41
41
|
],
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@graphile/postgis": "^0.1.0",
|
|
44
43
|
"graphile-build": "^4.14.1",
|
|
45
44
|
"graphile-build-pg": "^4.14.1",
|
|
46
|
-
"graphile-plugin-connection-filter": "^2.3.3"
|
|
45
|
+
"graphile-plugin-connection-filter": "^2.3.3",
|
|
46
|
+
"graphile-postgis": "^0.1.3"
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|
|
49
|
-
"@graphile/postgis": "^0.1.0",
|
|
50
49
|
"graphile-plugin-connection-filter": "workspace:^",
|
|
50
|
+
"graphile-postgis": "workspace:^",
|
|
51
51
|
"postgraphile": "^4.14.1"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
@@ -60,5 +60,5 @@
|
|
|
60
60
|
"pgsql-test": "^2.14.14",
|
|
61
61
|
"postgraphile": "^4.14.1"
|
|
62
62
|
},
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "ea3f6b8d86ba521ee629411efb4cf4133cc6e302"
|
|
64
64
|
}
|