Skip to content

Commit 1a94593

Browse files
committed
Fix Readme misalignment
1 parent a73f26d commit 1a94593

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,13 +156,13 @@ The `all*` queries accept parameters to let you sort, paginate, and filter the l
156156

157157
| Type | GraphQL Type | Rule | Example value |
158158
|---------|---------------------|---------------------------------------------------------------|---------------|
159-
| Id | `GraphQLID` | `name === 'id' \|\| name.substr(name.length - 3) === '_id'` | `1` |
159+
| Id | `GraphQLID` | `name === 'id' \|\| name.substr(name.length - 3) === '_id'` | `1` |
160160
| Integer | `GraphQLInt` | `Number.isInteger(value)` | `12` |
161161
| Numeric | `GraphQLFloat` | `!isNaN(parseFloat(value)) && isFinite(value)` | `12.34` |
162162
| Boolean | `GraphQLBoolean` | `typeof value === 'boolean'` | `false` |
163163
| String | `GraphQLString` | `typeof value === 'string'` | `'foo'` |
164164
| Array | `GraphQLList` | `Array.isArray(value)` | `['bar']`, `[12, 34]` |
165-
| Date | `DateType` (custom) | `value instanceof Date \|\| isISODateString(value)` | `new Date('2016-06-10T15:49:14.236Z')`, `'2016-06-10T15:49:14.236Z'` |
165+
| Date | `DateType` (custom) | `value instanceof Date \|\| isISODateString(value)` | `new Date('2016-06-10T15:49:14.236Z')`, `'2016-06-10T15:49:14.236Z'` |
166166
| Object | `GraphQLJSON` | `Object.prototype.toString.call(value) === '[object Object]'` | `transport: { service: 'fakemail', auth: { user: 'fake@mail.com', pass: 'f00b@r' } }` |
167167

168168
## GraphQL Usage

0 commit comments

Comments
 (0)