-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
deprecate(graphql/
@searchBy
): @searchByOperatorRelation
, the `@se…
…archByOperatorRelationship` should be used instead. Partially reverts 0574fd2
- Loading branch information
1 parent
ce67672
commit 8cdb50e
Showing
4 changed files
with
70 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
packages/graphql/src/SearchBy/Definitions/SearchByOperatorRelationDirective.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?php declare(strict_types = 1); | ||
|
||
namespace LastDragon_ru\LaraASP\GraphQL\SearchBy\Definitions; | ||
|
||
use LastDragon_ru\LaraASP\GraphQL\SearchBy\Operators\Complex\Relationship; | ||
|
||
/** | ||
* @deprecated 5.6.0 Please use {@see SearchByOperatorRelationshipDirective}. | ||
*/ | ||
class SearchByOperatorRelationDirective extends Relationship { | ||
// Lighthouse loads all classes from directive namespace this leads to | ||
// 'Class "Orchestra\Testbench\TestCase" not found' error for our *Test | ||
// classes. This class required to avoid this error. | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters