Skip to content

Commit f4b5a2e

Browse files
Fix MapType registration
1 parent 31657b0 commit f4b5a2e

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

src/integrations/graphql/MapType.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -103,11 +103,11 @@ public static function getQueryInputDefinitions (): array
103103

104104
public static function getType (): Type
105105
{
106-
if ($type = GqlEntityRegistry::getEntity(static::class))
106+
if ($type = GqlEntityRegistry::getEntity(static::getName()))
107107
return $type;
108108

109109
return GqlEntityRegistry::createEntity(
110-
static::class,
110+
static::getName(),
111111
new ObjectType([
112112
'name' => static::getName(),
113113
'fields' => static::class . '::getFieldDefinitions',
@@ -117,7 +117,7 @@ public static function getType (): Type
117117

118118
public static function getInputType (): InputType
119119
{
120-
$name = static::class . 'Input';
120+
$name = static::getName() . 'Input';
121121

122122
if ($type = GqlEntityRegistry::getEntity($name))
123123
return $type;
@@ -133,7 +133,7 @@ public static function getInputType (): InputType
133133

134134
public static function getQueryType (): InputType
135135
{
136-
$name = static::class . 'Query';
136+
$name = static::getName() . 'Query';
137137

138138
if ($type = GqlEntityRegistry::getEntity($name))
139139
return $type;
@@ -149,7 +149,7 @@ public static function getQueryType (): InputType
149149

150150
public static function getCoordsType (): InputType
151151
{
152-
$name = static::class . 'Coords';
152+
$name = static::getName() . 'Coords';
153153

154154
if ($type = GqlEntityRegistry::getEntity($name))
155155
return $type;
@@ -174,7 +174,7 @@ public static function getCoordsType (): InputType
174174

175175
public static function getUnitType (): EnumType
176176
{
177-
$name = static::class . 'Unit';
177+
$name = static::getName() . 'Unit';
178178

179179
if ($type = GqlEntityRegistry::getEntity($name))
180180
return $type;

0 commit comments

Comments
 (0)