@webiny/api-headless-cms-ddb-es
Version:
DynamoDB and Elasticsearch storage operations plugin for Headless CMS API.
45 lines (44 loc) • 1.05 kB
JavaScript
import { createSystemField } from "./createSystemField.js";
import { createModelField } from "@webiny/api-headless-cms";
export const locationFields = {
wbyAco_location: {
type: "object",
systemField: true,
searchable: true,
sortable: true,
field: createSystemField({
storageId: "location",
fieldId: "wbyAco_location",
type: "object",
settings: {
fields: [createModelField({
id: "folderId",
fieldId: "folderId",
storageId: "folderId",
type: "text",
label: "Folder ID"
})]
}
}),
parents: []
},
"wbyAco_location.folderId": {
type: "text",
systemField: true,
searchable: true,
sortable: true,
field: createSystemField({
id: "folderId",
fieldId: "folderId",
storageId: "folderId",
type: "text",
label: "Folder ID"
}),
parents: [{
fieldId: "wbyAco_location",
type: "object",
storageId: "location"
}]
}
};
//# sourceMappingURL=location.js.map