-
Notifications
You must be signed in to change notification settings - Fork 640
Closed
Labels
🚨This issue needs some love.This issue needs some love.api: datastoreIssues related to the Datastore API.Issues related to the Datastore API.triage meI really want to be triaged.I really want to be triaged.
Milestone
Description
Right now the metadata describes a property type (string, int, etc) as a kind. This is a little overloaded with the concept of a Kind in datastore. Perhaps these could all be called type instead? Then metadata would look like:
registerKind('namespace', 'Author', {
name: { type: STRING, indexed: false },
tags: { type: STRING, multi: true }, // an array of string elements.
favArticles: { type: KEY, multi: true }
contact: {
kind: {
telephone: { type: STRING },
email: { type: STRING }
}
}
});
Metadata
Metadata
Assignees
Labels
🚨This issue needs some love.This issue needs some love.api: datastoreIssues related to the Datastore API.Issues related to the Datastore API.triage meI really want to be triaged.I really want to be triaged.