@@ -21,13 +21,13 @@ directive @aggregate(
2121
2222 """
2323 The relationship with the column to aggregate.
24- Mutually exclusive with the `model` argument .
24+ Mutually exclusive with `model`.
2525 """
2626 relation : String
2727
2828 """
2929 The model with the column to aggregate.
30- Mutually exclusive with the `relation` argument .
30+ Mutually exclusive with `relation`.
3131 """
3232 model : String
3333
@@ -821,13 +821,13 @@ Returns the count of a given relationship or model.
821821directive @count (
822822 """
823823 The relationship to count.
824- Mutually exclusive with the `model` argument .
824+ Mutually exclusive with `model`.
825825 """
826826 relation : String
827827
828828 """
829829 The model to count.
830- Mutually exclusive with the `relation` argument .
830+ Mutually exclusive with `relation`.
831831 """
832832 model : String
833833
@@ -2255,15 +2255,15 @@ directive @node(
22552255 Consists of two parts: a class name and a method name, seperated by an `@` symbol.
22562256 If you pass only a class name, the method name defaults to `__invoke`.
22572257
2258- Mutually exclusive with the `model` argument .
2258+ Mutually exclusive with `model`.
22592259 """
22602260 resolver : String
22612261
22622262 """
22632263 Specify the class name of the model to use.
22642264 This is only needed when the default model detection does not work.
22652265
2266- Mutually exclusive with the `model` argument .
2266+ Mutually exclusive with `resolver` .
22672267 """
22682268 model : String
22692269) on OBJECT
@@ -2334,15 +2334,15 @@ directive @orderBy(
23342334 """
23352335 Restrict the allowed column names to a well-defined list.
23362336 This improves introspection capabilities and security.
2337- Mutually exclusive with the `columnsEnum` argument .
2337+ Mutually exclusive with `columnsEnum`.
23382338 Only used when the directive is added on an argument.
23392339 """
23402340 columns : [String ! ]
23412341
23422342 """
23432343 Use an existing enumeration type to restrict the allowed columns to a predefined list.
2344- This allowes you to re-use the same enum for multiple fields.
2345- Mutually exclusive with the `columns` argument .
2344+ This allows you to re-use the same enum for multiple fields.
2345+ Mutually exclusive with `columns`.
23462346 Only used when the directive is added on an argument.
23472347 """
23482348 columnsEnum : String
@@ -2386,21 +2386,21 @@ Options for the `relations` argument on `@orderBy`.
23862386"""
23872387input OrderByRelation {
23882388 """
2389- TODO: description
2389+ Name of the relation.
23902390 """
23912391 relation : String !
23922392
23932393 """
23942394 Restrict the allowed column names to a well-defined list.
23952395 This improves introspection capabilities and security.
2396- Mutually exclusive with the `columnsEnum` argument .
2396+ Mutually exclusive with `columnsEnum`.
23972397 """
23982398 columns : [String ! ]
23992399
24002400 """
24012401 Use an existing enumeration type to restrict the allowed columns to a predefined list.
2402- This allowes you to re-use the same enum for multiple fields.
2403- Mutually exclusive with the `columns` argument .
2402+ This allows you to re-use the same enum for multiple fields.
2403+ Mutually exclusive with `columns`.
24042404 """
24052405 columnsEnum : String
24062406}
0 commit comments