Skip to content

Commit 180fc0e

Browse files
committed
chore: tweak relation field description
1 parent d35e5dc commit 180fc0e

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

__tests__/integration/schema/__snapshots__/connectionFilterRelationsTrue.test.js.snap

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ input BackwardCompoundFilter {
4444
backwardCompound2: IntFilter
4545
4646
\\"\\"\\"
47-
Filter by the object’s \`filterableByBackwardCompound1AndBackwardCompound2\` field.
47+
Filter by the object’s \`filterableByBackwardCompound1AndBackwardCompound2\` relation.
4848
\\"\\"\\"
4949
filterableByBackwardCompound1AndBackwardCompound2: FilterableFilter
5050
@@ -106,7 +106,7 @@ input BackwardFilter {
106106
\\"\\"\\"Checks for all expressions in this list.\\"\\"\\"
107107
and: [BackwardFilter!]
108108
109-
\\"\\"\\"Filter by the object’s \`filterableByFilterableId\` field.\\"\\"\\"
109+
\\"\\"\\"Filter by the object’s \`filterableByFilterableId\` relation.\\"\\"\\"
110110
filterableByFilterableId: FilterableFilter
111111
112112
\\"\\"\\"Filter by the object’s \`filterableId\` field.\\"\\"\\"
@@ -261,7 +261,7 @@ input ChildFilter {
261261
\\"\\"\\"Checks for all expressions in this list.\\"\\"\\"
262262
and: [ChildFilter!]
263263
264-
\\"\\"\\"Filter by the object’s \`filterableByFilterableId\` field.\\"\\"\\"
264+
\\"\\"\\"Filter by the object’s \`filterableByFilterableId\` relation.\\"\\"\\"
265265
filterableByFilterableId: FilterableFilter
266266
267267
\\"\\"\\"Filter by the object’s \`filterableId\` field.\\"\\"\\"
@@ -474,7 +474,7 @@ input FilterableFilter {
474474
\\"\\"\\"Checks for all expressions in this list.\\"\\"\\"
475475
and: [FilterableFilter!]
476476
477-
\\"\\"\\"Filter by the object’s \`backwardByFilterableId\` field.\\"\\"\\"
477+
\\"\\"\\"Filter by the object’s \`backwardByFilterableId\` relation.\\"\\"\\"
478478
backwardByFilterableId: BackwardFilter
479479
480480
\\"\\"\\"Filter by the object’s \`backwardCompound1\` field.\\"\\"\\"
@@ -484,7 +484,7 @@ input FilterableFilter {
484484
backwardCompound2: IntFilter
485485
486486
\\"\\"\\"
487-
Filter by the object’s \`backwardCompoundByBackwardCompound1AndBackwardCompound2\` field.
487+
Filter by the object’s \`backwardCompoundByBackwardCompound1AndBackwardCompound2\` relation.
488488
\\"\\"\\"
489489
backwardCompoundByBackwardCompound1AndBackwardCompound2: BackwardCompoundFilter
490490
@@ -500,7 +500,7 @@ input FilterableFilter {
500500
\\"\\"\\"Filter by the object’s \`enum\` field.\\"\\"\\"
501501
enum: MoodFilter
502502
503-
\\"\\"\\"Filter by the object’s \`forwardByForwardId\` field.\\"\\"\\"
503+
\\"\\"\\"Filter by the object’s \`forwardByForwardId\` relation.\\"\\"\\"
504504
forwardByForwardId: ForwardFilter
505505
506506
\\"\\"\\"Filter by the object’s \`forwardCompound1\` field.\\"\\"\\"
@@ -510,7 +510,7 @@ input FilterableFilter {
510510
forwardCompound2: IntFilter
511511
512512
\\"\\"\\"
513-
Filter by the object’s \`forwardCompoundByForwardCompound1AndForwardCompound2\` field.
513+
Filter by the object’s \`forwardCompoundByForwardCompound1AndForwardCompound2\` relation.
514514
\\"\\"\\"
515515
forwardCompoundByForwardCompound1AndForwardCompound2: ForwardCompoundFilter
516516
@@ -541,7 +541,7 @@ input FilterableFilter {
541541
\\"\\"\\"Checks for any expressions in this list.\\"\\"\\"
542542
or: [FilterableFilter!]
543543
544-
\\"\\"\\"Filter by the object’s \`parentByParentId\` field.\\"\\"\\"
544+
\\"\\"\\"Filter by the object’s \`parentByParentId\` relation.\\"\\"\\"
545545
parentByParentId: ParentFilter
546546
547547
\\"\\"\\"Filter by the object’s \`parentId\` field.\\"\\"\\"
@@ -651,7 +651,7 @@ input ForwardCompoundFilter {
651651
and: [ForwardCompoundFilter!]
652652
653653
\\"\\"\\"
654-
Filter by the object’s \`filterableByForwardCompound1AndForwardCompound2\` field.
654+
Filter by the object’s \`filterableByForwardCompound1AndForwardCompound2\` relation.
655655
\\"\\"\\"
656656
filterableByForwardCompound1AndForwardCompound2: FilterableFilter
657657
@@ -719,7 +719,7 @@ input ForwardFilter {
719719
\\"\\"\\"Checks for all expressions in this list.\\"\\"\\"
720720
and: [ForwardFilter!]
721721
722-
\\"\\"\\"Filter by the object’s \`filterableByForwardId\` field.\\"\\"\\"
722+
\\"\\"\\"Filter by the object’s \`filterableByForwardId\` relation.\\"\\"\\"
723723
filterableByForwardId: FilterableFilter
724724
725725
\\"\\"\\"Filter by the object’s \`id\` field.\\"\\"\\"

src/PgConnectionArgFilterBackwardRelationsPlugin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ module.exports = function PgConnectionArgFilterBackwardRelationsPlugin(
133133
memo[fieldName] = fieldWithHooks(
134134
fieldName,
135135
{
136-
description: `Filter by the object’s \`${fieldName}\` field.`,
136+
description: `Filter by the object’s \`${fieldName}\` relation.`,
137137
type: FilterType,
138138
},
139139
{

src/PgConnectionArgFilterForwardRelationsPlugin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ module.exports = function PgConnectionArgFilterForwardRelationsPlugin(builder) {
102102
memo[fieldName] = fieldWithHooks(
103103
fieldName,
104104
{
105-
description: `Filter by the object’s \`${fieldName}\` field.`,
105+
description: `Filter by the object’s \`${fieldName}\` relation.`,
106106
type: FilterType,
107107
},
108108
{

0 commit comments

Comments
 (0)