graphile-search-plugin 0.1.12 → 0.1.13
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 +1 -0
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
<img height="20" src="https://github.com/launchql/launchql/actions/workflows/run-tests.yaml/badge.svg" />
|
|
10
10
|
</a>
|
|
11
11
|
<a href="https://github.com/launchql/launchql/blob/main/LICENSE"><img height="20" src="https://img.shields.io/badge/license-MIT-blue.svg"/></a>
|
|
12
|
+
<a href="https://www.npmjs.com/package/graphile-search-plugin"><img height="20" src="https://img.shields.io/github/package-json/v/launchql/launchql?filename=graphile%2Fgraphile-search-plugin%2Fpackage.json"/></a>
|
|
12
13
|
</p>
|
|
13
14
|
|
|
14
15
|
This [PostGraphile](http://postgraphile.org/) schema plugin was built to enable ordering via `ts_rank` of full-text search on all `tsvector` fields, providing auto-generated queries within PostGraphile.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "graphile-search-plugin",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.13",
|
|
4
4
|
"description": "generate search conditions for your tsvector columns",
|
|
5
5
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/launchql/launchql",
|
|
@@ -38,16 +38,16 @@
|
|
|
38
38
|
"url": "https://github.com/launchql/launchql/issues"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"graphile-plugin-
|
|
42
|
-
"graphile-
|
|
43
|
-
"graphile-
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
41
|
+
"graphile-plugin-connection-filter": "^2.3.1",
|
|
42
|
+
"graphile-plugin-fulltext-filter": "^2.0.2",
|
|
43
|
+
"graphile-simple-inflector": "^0.1.8",
|
|
44
|
+
"graphile-test": "^2.8.9",
|
|
45
|
+
"makage": "^0.1.8",
|
|
46
|
+
"pgsql-test": "^2.14.12"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
49
|
"graphile-build": "^4.14.1",
|
|
50
50
|
"graphql-tag": "2.12.6"
|
|
51
51
|
},
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "3812f24a480b2035b3413ec7fecfe492f294e590"
|
|
53
53
|
}
|