-
Notifications
You must be signed in to change notification settings - Fork 639
Closed
Labels
api: datastoreIssues related to the Datastore API.Issues related to the Datastore API.type: questionRequest for information or clarification. Not an issue.Request for information or clarification. Not an issue.
Description
How do I set Property value types (e.g. dateTimeValue, IntegerValue, etc.) when inserting my entities in the example below. At the moment the Property value types are all set as strings
var entry = {
"title":"Title",
"start":"2014-02-01T09:28:56.321-10:00"
};
var ds = gcloud.datastore.dataset();
var key = ds.key(['Entry', 'Foo', 'Todo']);
ds.save({
key: key,
data: entry
}, callback);
Metadata
Metadata
Assignees
Labels
api: datastoreIssues related to the Datastore API.Issues related to the Datastore API.type: questionRequest for information or clarification. Not an issue.Request for information or clarification. Not an issue.