Skip to content
Merged
Changes from all commits
Commits
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
6 changes: 5 additions & 1 deletion src/OrderBy/OrderByServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,11 @@ public static function createOrderByClauseInput(string $name, string $descriptio
);
}

/** We generate this in the same general shape as the input object with columns, even though it is unnecessarily complex for this specific case, to make it a non-breaking change when columns are added. */
/**
* We generate this in the same general shape as the input object with columns.
* It is unnecessarily complex for this specific case.
* This makes it a non-breaking change when columns are added.
*/
public static function createRelationAggregateFunctionInput(string $name, string $description): InputObjectTypeDefinitionNode
{
return Parser::inputObjectTypeDefinition(/* @lang GraphQL */ <<<GRAPHQL
Expand Down