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
Copy file name to clipboardexpand all lines: tests/Utils/SchemaPrinterTest.php
+6
Original file line number
Diff line number
Diff line change
@@ -1010,6 +1010,12 @@ public function testPrintIntrospectionSchema(): void
1010
1010
"Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted using the Markdown syntax, as specified by [CommonMark](https:\/\/commonmark.org\/)."
1011
1011
reason: String = "No longer supported"
1012
1012
) on FIELD_DEFINITION | ENUM_VALUE | ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION
1013
+
1014
+
"Exposes a URL that specifies the behaviour of this scalar."
1015
+
directive @specifiedBy(
1016
+
"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."
1017
+
url: String!
1018
+
) on SCALAR
1013
1019
1014
1020
"A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations."
0 commit comments