File tree Expand file tree Collapse file tree 1 file changed +21
-1
lines changed Expand file tree Collapse file tree 1 file changed +21
-1
lines changed Original file line number Diff line number Diff line change @@ -286,6 +286,26 @@ query {
286
286
287
287
## URL Scalars
288
288
289
+ <table >
290
+ <tr >
291
+ <td >Scalar Name</td >
292
+ <td >Scalar Specification</td >
293
+ <td >Description</td >
294
+ </tr >
295
+ <tr >
296
+ <td > `Url` </td >
297
+ <td >
298
+
299
+ ```` graphql
300
+ scalar URL
301
+ @specifiedBy (url : " https://www.w3.org/Addressing/URL/url-spec.txt" )
302
+ ```
303
+
304
+ </td >
305
+ <td >An url scalar that accepts string values like `https ://www .w3 .org /Addressing /URL /url -spec .txt ` and produces `java .net .URL ` objects at runtime .</td >
306
+ </tr >
307
+ </table >
308
+
289
309
| Scalar Name | Scalar Specification | Description |
290
310
| ----------- | -------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- |
291
311
| `Url ` | <pre lang ="graphql" >scalar URL @specifiedBy (url : " https://www.w3.org/Addressing/URL/url-spec.txt" )</pre > | An url scalar that accepts string values like `https ://www .w3 .org /Addressing /URL /url -spec .txt ` and produces `java .net .URL ` objects at runtime . |
@@ -317,7 +337,7 @@ type Customer {
317
337
type Query {
318
338
customers (filterSyntax : JSON ): [Customers ]
319
339
}
320
- ```
340
+ ````
321
341
322
342
And example query might look like :
323
343
You can’t perform that action at this time.
0 commit comments