You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -138,6 +140,19 @@ public static function getInternalDirectives(): array
138
140
],
139
141
],
140
142
]),
143
+
'specifiedBy' => newself([
144
+
'name' => self::SPECIFIED_BY_NAME,
145
+
'description' => 'Exposes a URL that specifies the behaviour of this scalar.',
146
+
'locations' => [
147
+
DirectiveLocation::SCALAR,
148
+
],
149
+
'args' => [
150
+
self::URL_ARGUMENT_NAME => [
151
+
'type' => Type::nonNull(Type::string()),
152
+
'description' => 'The URL that specifies the behaviour of this scalar and points to a human-readable specification of the data format, serialization, and coercion rules. It must not appear on built-in scalar types.',
153
+
],
154
+
],
155
+
]),
141
156
];
142
157
}
143
158
@@ -157,6 +172,14 @@ public static function deprecatedDirective(): Directive
0 commit comments