-
Notifications
You must be signed in to change notification settings - Fork 386
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
types: add DateString type #373
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -64,6 +64,17 @@ The following table summarizes LoopBack's data types. | |
<pre>new GeoPoint({lat: 10.32424, lng: 5.84978});</pre> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td>DateString</td> | ||
<td> | ||
<p>LoopBack<a href="http://apidocs.strongloop.com/loopback-datasource-juggler/#datestring" class="external-link" rel="nofollow"> DateString</a> object</p> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There is no tag with id There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Right now, this link doesn't exist. I presume there is a PR somewhere for it? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I assume that's what @kjdelisle is talking about re loopbackio/loopback-datasource-juggler#1356. Once that lands (with some modifications) and juggler is published to npm, then the link should work. |
||
</td> | ||
<td> | ||
<p><code>"2000-01-01T00:00:00.000Z"</code></p> | ||
<p><code>"2000-01-01"</code></p> | ||
<p><code>"2000-01-01 12:00:00"</code></p> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td>null</td> | ||
<td>JSON null</td> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
will we have an anchor for #datestring in the apidoc?