Skip to content

Commit 72b51e2

Browse files
committed
Update flow till v0.29
1 parent 9041fc3 commit 72b51e2

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.flowconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ esproposal.class_instance_fields=enable
1313
suppress_comment= \\(.\\|\n\\)*\\$FlowFixMe
1414

1515
[version]
16-
0.28.0
16+
0.29.0

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ composeWithConnection(userTypeComposer, {
2424
_ID_DESC: {
2525
uniqueFields: ['_id'],
2626
sortValue: { _id: -1 },
27-
directionFilter: (cursorData, filter, isBefore) => {
27+
directionFilter: (filter, cursorData, isBefore) => {
2828
filter[OPERATORS_FIELDNAME] = filter[OPERATORS_FIELDNAME] || {};
2929
filter[OPERATORS_FIELDNAME]._id = filter[OPERATORS_FIELDNAME]._id || {};
3030
if (isBefore) {
@@ -38,7 +38,7 @@ composeWithConnection(userTypeComposer, {
3838
AGE_ID_ASC: {
3939
uniqueFields: ['age', '_id'],
4040
sortValue: { age: 1, _id: -1 },
41-
directionFilter: (cursorData, filter, isBefore) => {
41+
directionFilter: (filter, cursorData, isBefore) => {
4242
filter[OPERATORS_FIELDNAME] = filter[OPERATORS_FIELDNAME] || {};
4343
filter[OPERATORS_FIELDNAME]._id = filter[OPERATORS_FIELDNAME]._id || {};
4444
filter[OPERATORS_FIELDNAME].age = filter[OPERATORS_FIELDNAME].age || {};

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"eslint-plugin-import": "1.10.2",
4848
"eslint-plugin-jsx-a11y": "1.5.5",
4949
"eslint-plugin-react": "5.2.2",
50-
"flow-bin": "0.28.0",
50+
"flow-bin": "0.29.0",
5151
"mocha": "2.5.3",
5252
"rimraf": "2.5.2",
5353
"sane": "1.3.4"

0 commit comments

Comments
 (0)