Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
b9ccd0a
lockfile
benjie Nov 24, 2024
173ed32
Upgrade pg
benjie Nov 24, 2024
f17c42f
Upgrade jest and pg-tsquery
benjie Nov 24, 2024
58b8e59
Upgrade graphql; fix jasmine reference
benjie Nov 24, 2024
04aa046
upgrade tsquery
pyramation Oct 3, 2020
1ce1be4
compatibility fix for filter plugin v2
mattbretl May 9, 2020
38f8433
Simplify test helpers
benjie Nov 24, 2024
6466370
New GraphQL version has new snapshots
benjie Nov 24, 2024
f02a924
How to run the tests
benjie Nov 24, 2024
bd4592d
Install GraphQL jest serializer
benjie Nov 24, 2024
a53d512
Use printed schemas in jest diffs
benjie Nov 24, 2024
87a6d93
Sort schemas
benjie Nov 25, 2024
b5cf67a
Sorted snapshots
benjie Nov 25, 2024
12802c5
Deal with duplicate test name
benjie Nov 25, 2024
8f925e2
Install TypeScript
benjie Nov 24, 2024
2aa56a9
Rudimentary TypeScript support
benjie Nov 24, 2024
a31e29b
Upgrade to V5 dependencies
benjie Nov 24, 2024
2a941f9
Restucture plugin to match V5 expectations
benjie Nov 24, 2024
36abd11
Convert inflection
benjie Nov 24, 2024
48d72b5
Begin conversion of build/init
benjie Nov 24, 2024
615521f
Move value faffing into scalar
benjie Nov 24, 2024
9e2bef2
Upgrade connection filter plugin
benjie Nov 24, 2024
63fef2b
Convert up to line 270
benjie Nov 24, 2024
cb533b8
Refactoring and add support for computed columns. Line 283
benjie Nov 24, 2024
c6b2764
Down to line 369
benjie Nov 24, 2024
3f6fa7c
Remainder
benjie Nov 24, 2024
450fad1
Remove TS ESM hack
benjie Nov 24, 2024
d7b7058
Lint
benjie Nov 24, 2024
4dcfffd
Accommodations for running tests in V5
benjie Nov 24, 2024
6449f25
Test types
benjie Nov 24, 2024
a65bdae
Fix type
benjie Nov 24, 2024
32b2d9a
Accommodations for running tests in V5
benjie Nov 24, 2024
11fc3a8
Fix tests
benjie Nov 25, 2024
450c6b4
Remove unused
benjie Nov 25, 2024
86fd8e1
Add support for tsvector codec
benjie Nov 25, 2024
27295d4
V5 allowed changes
benjie Nov 25, 2024
0f0dfe5
Add missing filters
benjie Nov 25, 2024
2b96c03
Add standard operators
benjie Nov 25, 2024
ac5058c
Upgrade connection filter
benjie Nov 25, 2024
79072e9
Copy hacks around
benjie Nov 25, 2024
aba1697
Lint
benjie Nov 25, 2024
09c2795
Allowed V5 changes
benjie Nov 25, 2024
5be4ab9
Allowed V5 changes
benjie Nov 25, 2024
98d6d41
Allowed V5 changes
benjie Nov 25, 2024
02bab6a
Fix test
benjie Nov 25, 2024
adbeb4f
Allowed V5 changes
benjie Nov 25, 2024
b291107
Allowed V5 changes
benjie Nov 25, 2024
3b0fa33
Allowed V5 changes
benjie Nov 25, 2024
bba662f
Tidy
benjie Nov 25, 2024
4095ff9
Upgrade PostGraphile
benjie Dec 4, 2024
eea18b5
Rename to a fork
benjie Dec 4, 2024
d409e48
Upgrade PostGraphile
benjie Dec 4, 2024
1a64379
2.0.0-beta.0
benjie Dec 4, 2024
7698cad
Fix distribution
benjie Dec 10, 2024
07079f9
2.0.0-beta.1
benjie Dec 10, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 10 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,21 +1,24 @@
# dependencies
node_modules
/.yarn
/.yarnrc.yml
/node_modules

# testing
coverage
/coverage

# production
build
.netlify
dist
/build
/.netlify
/dist

# misc
/.git
.DS_Store
.env
npm-debug.log
yarn-error.log

#IDE
.idea/*
*.swp
.vscode

.env
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,3 +80,15 @@ query {
}
}
```

## Contributing

Run the tests with:

```sh
yarn
createdb postgraphile_plugin_fulltext_filter || true
echo 'export TEST_DATABASE_URL="postgres:///postgraphile_plugin_fulltext_filter"' >> .env
chmod +x .env
yarn test
```
Loading