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 {
286286
287287## URL Scalars
288288
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+
289309| Scalar Name | Scalar Specification | Description |
290310| ----------- | -------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- |
291311| `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 {
317337type Query {
318338 customers (filterSyntax : JSON ): [Customers ]
319339}
320- ```
340+ ````
321341
322342And example query might look like :
323343
You can’t perform that action at this time.
0 commit comments