graphile-search-plugin 0.1.12 → 0.1.14

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.
Files changed (2) hide show
  1. package/README.md +6 -10
  2. package/package.json +8 -8
package/README.md CHANGED
@@ -8,7 +8,12 @@
8
8
  <a href="https://github.com/launchql/launchql/actions/workflows/run-tests.yaml">
9
9
  <img height="20" src="https://github.com/launchql/launchql/actions/workflows/run-tests.yaml/badge.svg" />
10
10
  </a>
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>
11
+ <a href="https://github.com/launchql/launchql/blob/main/LICENSE">
12
+ <img height="20" src="https://img.shields.io/badge/license-MIT-blue.svg"/>
13
+ </a>
14
+ <a href="https://www.npmjs.com/package/graphile-search-plugin">
15
+ <img height="20" src="https://img.shields.io/github/package-json/v/launchql/launchql?filename=graphile%2Fgraphile-search-plugin%2Fpackage.json"/>
16
+ </a>
12
17
  </p>
13
18
 
14
19
  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.
@@ -42,15 +47,6 @@ app.use(
42
47
 
43
48
  Look in the tests ;)
44
49
 
45
- ## Testing
46
-
47
- ```sh
48
- createdb test_database
49
- psql test_database < sql/roles.sql
50
- psql test_database < sql/test.sql
51
- yarn test
52
- ```
53
-
54
50
  ---
55
51
 
56
52
  ## Education and Tutorials
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphile-search-plugin",
3
- "version": "0.1.12",
3
+ "version": "0.1.14",
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-fulltext-filter": "^2.0.1",
42
- "graphile-simple-inflector": "^0.1.7",
43
- "graphile-test": "^2.8.8",
44
- "makage": "^0.1.6",
45
- "pgsql-test": "^2.14.11",
46
- "postgraphile-plugin-connection-filter": "^2.0.0"
41
+ "graphile-plugin-connection-filter": "^2.3.2",
42
+ "graphile-plugin-fulltext-filter": "^2.0.3",
43
+ "graphile-simple-inflector": "^0.1.9",
44
+ "graphile-test": "^2.8.10",
45
+ "makage": "^0.1.8",
46
+ "pgsql-test": "^2.14.13"
47
47
  },
48
48
  "dependencies": {
49
49
  "graphile-build": "^4.14.1",
50
50
  "graphql-tag": "2.12.6"
51
51
  },
52
- "gitHead": "ff477433074d91c28be6017e858b601fa99aa568"
52
+ "gitHead": "4e1ff9771c2b07808a9830281abc24d12c689187"
53
53
  }