Skip to content

Commit 47f8afb

Browse files
committed
test using table
1 parent 003f7ac commit 47f8afb

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

README.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff 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 {
317337
type Query {
318338
customers(filterSyntax: JSON): [Customers]
319339
}
320-
```
340+
````
321341

322342
And example query might look like:
323343

0 commit comments

Comments
 (0)