From a1cc20435104809e56f3a64dbf875d20e6c7afeb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benedikt=20R=C3=B6tsch?= Date: Thu, 29 Apr 2021 12:31:37 +0200 Subject: [PATCH] refactor: reintroduce contentful sys common resource attribute #31007 --- .../src/components/references/text.js | 2 +- e2e-tests/contentful/src/pages/boolean.js | 21 +- .../contentful/src/pages/content-reference.js | 79 +- e2e-tests/contentful/src/pages/date.js | 12 +- .../contentful/src/pages/gatsby-image.js | 28 +- .../src/pages/gatsby-plugin-image.js | 28 +- e2e-tests/contentful/src/pages/json.js | 24 +- e2e-tests/contentful/src/pages/location.js | 21 +- .../contentful/src/pages/media-reference.js | 39 +- e2e-tests/contentful/src/pages/number.js | 21 +- e2e-tests/contentful/src/pages/rich-text.js | 27 +- e2e-tests/contentful/src/pages/text.js | 35 +- .../gatsby-source-contentful/package.json | 1 + .../__snapshots__/gatsby-node.js.snap | 1072 ++- .../__tests__/__snapshots__/normalize.js.snap | 6855 +++++++---------- .../__tests__/download-contentful-assets.js | 16 +- .../src/__tests__/gatsby-node.js | 10 +- .../src/__tests__/normalize.js | 21 +- .../src/__tests__/rich-text.js | 24 +- .../gatsby-source-contentful/src/config.js | 10 + .../src/download-contentful-assets.js | 4 +- .../src/gatsby-node.js | 23 +- .../src/generate-schema.js | 58 +- .../gatsby-source-contentful/src/normalize.js | 113 +- .../gatsby-source-contentful/src/rich-text.js | 4 +- 25 files changed, 4001 insertions(+), 4547 deletions(-) create mode 100644 packages/gatsby-source-contentful/src/config.js diff --git a/e2e-tests/contentful/src/components/references/text.js b/e2e-tests/contentful/src/components/references/text.js index 8bcf361eb99c8..a8647ece05b1d 100644 --- a/e2e-tests/contentful/src/components/references/text.js +++ b/e2e-tests/contentful/src/components/references/text.js @@ -1,5 +1,5 @@ import React from "react" export const ContentfulText = ({ short, longPlain }) => ( -

[ContentfulText] {short || longPlain?.longPlain}

+

[ContentfulText] {short || longPlain?.raw}

) diff --git a/e2e-tests/contentful/src/pages/boolean.js b/e2e-tests/contentful/src/pages/boolean.js index 410065f7074bd..d4bd20c11b096 100644 --- a/e2e-tests/contentful/src/pages/boolean.js +++ b/e2e-tests/contentful/src/pages/boolean.js @@ -50,8 +50,11 @@ export default BooleanPage export const pageQuery = graphql` query BooleanQuery { default: allContentfulBoolean( - sort: { fields: contentful_id } - filter: { node_locale: { eq: "en-US" }, booleanLocalized: { eq: null } } + sort: { fields: sys___id } + filter: { + sys: { locale: { eq: "en-US" } } + booleanLocalized: { eq: null } + } ) { nodes { title @@ -59,8 +62,11 @@ export const pageQuery = graphql` } } english: allContentfulBoolean( - sort: { fields: contentful_id } - filter: { node_locale: { eq: "en-US" }, booleanLocalized: { ne: null } } + sort: { fields: sys___id } + filter: { + sys: { locale: { eq: "en-US" } } + booleanLocalized: { ne: null } + } ) { nodes { title @@ -68,8 +74,11 @@ export const pageQuery = graphql` } } german: allContentfulBoolean( - sort: { fields: contentful_id } - filter: { node_locale: { eq: "de-DE" }, booleanLocalized: { ne: null } } + sort: { fields: sys___id } + filter: { + sys: { locale: { eq: "de-DE" } } + booleanLocalized: { ne: null } + } ) { nodes { title diff --git a/e2e-tests/contentful/src/pages/content-reference.js b/e2e-tests/contentful/src/pages/content-reference.js index 9dfb892765136..cc33294438c0d 100644 --- a/e2e-tests/contentful/src/pages/content-reference.js +++ b/e2e-tests/contentful/src/pages/content-reference.js @@ -24,7 +24,7 @@ const ContentReferencePage = ({ data }) => { return (

Default

- {defaultEntries.map(({ contentful_id, title, one, many }) => { + {defaultEntries.map(({ sys: { id }, title, one, many }) => { const slug = slugify(title, { strict: true, lower: true }) let content = null @@ -37,7 +37,7 @@ const ContentReferencePage = ({ data }) => { } return ( -
+

{title}

{content}
@@ -45,7 +45,7 @@ const ContentReferencePage = ({ data }) => { })}

English Locale

{englishEntries.map( - ({ contentful_id, title, oneLocalized, manyLocalized }) => { + ({ sys: { id }, title, oneLocalized, manyLocalized }) => { const slug = slugify(title, { strict: true, lower: true }) let content = null @@ -58,7 +58,7 @@ const ContentReferencePage = ({ data }) => { } return ( -
+

{title}

{content}
@@ -67,7 +67,7 @@ const ContentReferencePage = ({ data }) => { )}

German Locale

{germanEntries.map( - ({ contentful_id, title, oneLocalized, manyLocalized }) => { + ({ sys: { id }, title, oneLocalized, manyLocalized }) => { const slug = slugify(title, { strict: true, lower: true }) let content = null @@ -80,7 +80,7 @@ const ContentReferencePage = ({ data }) => { } return ( -
+

{title}

{content}
@@ -97,18 +97,29 @@ export const pageQuery = graphql` query ContentReferenceQuery { default: allContentfulContentReference( sort: { fields: title } - filter: { node_locale: { eq: "en-US" }, title: { glob: "!*Localized*" } } + filter: { + sys: { locale: { eq: "en-US" } } + title: { glob: "!*Localized*" } + } ) { nodes { title - contentful_id + sys { + id + } one { __typename - contentful_id + sys { + id + } ... on ContentfulText { title short } + ... on ContentfulNumber { + title + integer + } ... on ContentfulContentReference { title one { @@ -116,6 +127,10 @@ export const pageQuery = graphql` title short } + ... on ContentfulNumber { + title + integer + } ... on ContentfulContentReference { title } @@ -137,7 +152,9 @@ export const pageQuery = graphql` } many { __typename - contentful_id + sys { + id + } ... on ContentfulText { title short @@ -153,6 +170,10 @@ export const pageQuery = graphql` title short } + ... on ContentfulNumber { + title + integer + } ... on ContentfulContentReference { title } @@ -176,16 +197,23 @@ export const pageQuery = graphql` } english: allContentfulContentReference( sort: { fields: title } - filter: { node_locale: { eq: "en-US" }, title: { glob: "*Localized*" } } + filter: { + sys: { locale: { eq: "en-US" } } + title: { glob: "*Localized*" } + } ) { nodes { title - contentful_id + sys { + id + } oneLocalized { __typename - title - decimal - integer + ... on ContentfulNumber { + title + decimal + integer + } } manyLocalized { __typename @@ -198,7 +226,7 @@ export const pageQuery = graphql` title short longPlain { - longPlain + raw } } } @@ -206,16 +234,23 @@ export const pageQuery = graphql` } german: allContentfulContentReference( sort: { fields: title } - filter: { node_locale: { eq: "de-DE" }, title: { glob: "*Localized*" } } + filter: { + sys: { locale: { eq: "de-DE" } } + title: { glob: "*Localized*" } + } ) { nodes { title - contentful_id + sys { + id + } oneLocalized { __typename - title - decimal - integer + ... on ContentfulNumber { + title + decimal + integer + } } manyLocalized { __typename @@ -228,7 +263,7 @@ export const pageQuery = graphql` title short longPlain { - longPlain + raw } } } diff --git a/e2e-tests/contentful/src/pages/date.js b/e2e-tests/contentful/src/pages/date.js index bb3a0ff554a38..ef8cb42c32b86 100644 --- a/e2e-tests/contentful/src/pages/date.js +++ b/e2e-tests/contentful/src/pages/date.js @@ -32,34 +32,32 @@ export default DatePage export const pageQuery = graphql` query DateQuery { - dateTime: contentfulDate(contentful_id: { eq: "38akBjGb3T1t4AjB87wQjo" }) { + dateTime: contentfulDate(sys: { id: { eq: "38akBjGb3T1t4AjB87wQjo" } }) { title date: dateTime formatted: dateTime(formatString: "D.M.YYYY - hh:mm") } dateTimeTimezone: contentfulDate( - contentful_id: { eq: "6dZ8pK4tFWZDZPHgSC0tNS" } + sys: { id: { eq: "6dZ8pK4tFWZDZPHgSC0tNS" } } ) { title date: dateTimeTimezone formatted: dateTimeTimezone(formatString: "D.M.YYYY - hh:mm (z)") } - date: contentfulDate(contentful_id: { eq: "5FuULz0jl0rKoKUKp2rshf" }) { + date: contentfulDate(sys: { id: { eq: "5FuULz0jl0rKoKUKp2rshf" } }) { title date formatted: date(formatString: "D.M.YYYY") } dateEnglish: contentfulDate( - contentful_id: { eq: "1ERWZvDiYELryAZEP1dmKG" } - node_locale: { eq: "en-US" } + sys: { id: { eq: "1ERWZvDiYELryAZEP1dmKG" }, locale: { eq: "en-US" } } ) { title date: dateLocalized formatted: dateLocalized(formatString: "D.M.YYYY - HH:mm:ss") } dateGerman: contentfulDate( - contentful_id: { eq: "1ERWZvDiYELryAZEP1dmKG" } - node_locale: { eq: "de-DE" } + sys: { id: { eq: "1ERWZvDiYELryAZEP1dmKG" }, locale: { eq: "de-DE" } } ) { title date: dateLocalized diff --git a/e2e-tests/contentful/src/pages/gatsby-image.js b/e2e-tests/contentful/src/pages/gatsby-image.js index c1a5deda7291d..22718a73e86b8 100644 --- a/e2e-tests/contentful/src/pages/gatsby-image.js +++ b/e2e-tests/contentful/src/pages/gatsby-image.js @@ -157,16 +157,18 @@ export const pageQuery = graphql` query GatsbyImageQuery { default: allContentfulAsset( filter: { - contentful_id: { - in: [ - "3ljGfnpegOnBTFGhV07iC1" - "3BSI9CgDdAn1JchXmY5IJi" - "65syuRuRVeKi03HvRsOkkb" - ] + sys: { + id: { + in: [ + "3ljGfnpegOnBTFGhV07iC1" + "3BSI9CgDdAn1JchXmY5IJi" + "65syuRuRVeKi03HvRsOkkb" + ] + } + locale: { eq: "en-US" } } - node_locale: { eq: "en-US" } } - sort: { fields: contentful_id } + sort: { fields: sys___id } ) { nodes { title @@ -194,10 +196,9 @@ export const pageQuery = graphql` } english: allContentfulAsset( filter: { - contentful_id: { in: ["4FwygYxkL3rAteERtoxxNC"] } - node_locale: { eq: "en-US" } + sys: { id: { in: ["4FwygYxkL3rAteERtoxxNC"] }, locale: { eq: "en-US" } } } - sort: { fields: contentful_id } + sort: { fields: sys___id } ) { nodes { title @@ -213,10 +214,9 @@ export const pageQuery = graphql` } german: allContentfulAsset( filter: { - contentful_id: { in: ["4FwygYxkL3rAteERtoxxNC"] } - node_locale: { eq: "de-DE" } + sys: { id: { in: ["4FwygYxkL3rAteERtoxxNC"] }, locale: { eq: "de-DE" } } } - sort: { fields: contentful_id } + sort: { fields: sys___id } ) { nodes { title diff --git a/e2e-tests/contentful/src/pages/gatsby-plugin-image.js b/e2e-tests/contentful/src/pages/gatsby-plugin-image.js index 38f11874aa32f..d23110893ae1d 100644 --- a/e2e-tests/contentful/src/pages/gatsby-plugin-image.js +++ b/e2e-tests/contentful/src/pages/gatsby-plugin-image.js @@ -196,16 +196,18 @@ export const pageQuery = graphql` query GatsbyPluginImageQuery { default: allContentfulAsset( filter: { - contentful_id: { - in: [ - "3ljGfnpegOnBTFGhV07iC1" - "3BSI9CgDdAn1JchXmY5IJi" - "65syuRuRVeKi03HvRsOkkb" - ] + sys: { + id: { + in: [ + "3ljGfnpegOnBTFGhV07iC1" + "3BSI9CgDdAn1JchXmY5IJi" + "65syuRuRVeKi03HvRsOkkb" + ] + } + locale: { eq: "en-US" } } - node_locale: { eq: "en-US" } } - sort: { fields: contentful_id } + sort: { fields: sys___id } ) { nodes { title @@ -239,10 +241,9 @@ export const pageQuery = graphql` } english: allContentfulAsset( filter: { - contentful_id: { in: ["4FwygYxkL3rAteERtoxxNC"] } - node_locale: { eq: "en-US" } + sys: { id: { in: ["4FwygYxkL3rAteERtoxxNC"] }, locale: { eq: "en-US" } } } - sort: { fields: contentful_id } + sort: { fields: sys___id } ) { nodes { title @@ -256,10 +257,9 @@ export const pageQuery = graphql` } german: allContentfulAsset( filter: { - contentful_id: { in: ["4FwygYxkL3rAteERtoxxNC"] } - node_locale: { eq: "de-DE" } + sys: { id: { in: ["4FwygYxkL3rAteERtoxxNC"] }, locale: { eq: "de-DE" } } } - sort: { fields: contentful_id } + sort: { fields: sys___id } ) { nodes { title diff --git a/e2e-tests/contentful/src/pages/json.js b/e2e-tests/contentful/src/pages/json.js index 45172e184fb0d..bce1cb1edd3a1 100644 --- a/e2e-tests/contentful/src/pages/json.js +++ b/e2e-tests/contentful/src/pages/json.js @@ -31,7 +31,7 @@ const JSONPage = ({ data }) => {

Name: {actor.name}

Photo: {actor.photo}

Birthdate: {actor.Birthdate}

-

Born at: {actor.Born_At}

+

Born at: {actor["Born At"]}

Weight: {actor.weight}

Age: {actor.age}

Wife: {actor.wife}

@@ -61,33 +61,23 @@ export default JSONPage export const pageQuery = graphql` query JSONQuery { - simple: contentfulJson(contentful_id: { eq: "2r6tNjP8brkyy5yLR39hhh" }) { + simple: contentfulJson(sys: { id: { eq: "2r6tNjP8brkyy5yLR39hhh" } }) { json } - complex: contentfulJson(contentful_id: { eq: "2y71nV0cpW9vzTmJybq571" }) { + complex: contentfulJson(sys: { id: { eq: "2y71nV0cpW9vzTmJybq571" } }) { json } english: contentfulJson( - node_locale: { eq: "en-US" } - jsonLocalized: { id: { ne: null } } + sys: { id: { eq: "7DvTBEPg5P6TRC7dI9zXuO" }, locale: { eq: "en-US" } } ) { title - jsonLocalized { - age - city - name - } + jsonLocalized } german: contentfulJson( - node_locale: { eq: "de-DE" } - jsonLocalized: { id: { ne: null } } + sys: { id: { eq: "7DvTBEPg5P6TRC7dI9zXuO" }, locale: { eq: "de-DE" } } ) { title - jsonLocalized { - age - city - name - } + jsonLocalized } } ` diff --git a/e2e-tests/contentful/src/pages/location.js b/e2e-tests/contentful/src/pages/location.js index 813f6cf9ed7dd..f9757a987d661 100644 --- a/e2e-tests/contentful/src/pages/location.js +++ b/e2e-tests/contentful/src/pages/location.js @@ -57,8 +57,11 @@ export default LocationPage export const pageQuery = graphql` query LocationQuery { default: allContentfulLocation( - sort: { fields: contentful_id } - filter: { title: { glob: "!*Localized*" }, node_locale: { eq: "en-US" } } + sort: { fields: sys___id } + filter: { + title: { glob: "!*Localized*" } + sys: { locale: { eq: "en-US" } } + } ) { nodes { title @@ -69,8 +72,11 @@ export const pageQuery = graphql` } } english: allContentfulLocation( - sort: { fields: contentful_id } - filter: { title: { glob: "*Localized*" }, node_locale: { eq: "en-US" } } + sort: { fields: sys___id } + filter: { + title: { glob: "*Localized*" } + sys: { locale: { eq: "en-US" } } + } ) { nodes { title @@ -81,8 +87,11 @@ export const pageQuery = graphql` } } german: allContentfulLocation( - sort: { fields: contentful_id } - filter: { title: { glob: "*Localized*" }, node_locale: { eq: "de-DE" } } + sort: { fields: sys___id } + filter: { + title: { glob: "*Localized*" } + sys: { locale: { eq: "de-DE" } } + } ) { nodes { title diff --git a/e2e-tests/contentful/src/pages/media-reference.js b/e2e-tests/contentful/src/pages/media-reference.js index f6bf077d006e1..9361b6b641bc0 100644 --- a/e2e-tests/contentful/src/pages/media-reference.js +++ b/e2e-tests/contentful/src/pages/media-reference.js @@ -10,7 +10,7 @@ const MediaReferencePage = ({ data }) => { const germanEntries = data.german.nodes return ( - {defaultEntries.map(({ contentful_id, title, one, many }) => { + {defaultEntries.map(({ sys: { id }, title, one, many }) => { const slug = slugify(title, { strict: true, lower: true }) let content = null @@ -27,7 +27,7 @@ const MediaReferencePage = ({ data }) => { } return ( -
+

{title}

{content}
@@ -35,7 +35,7 @@ const MediaReferencePage = ({ data }) => { })}

English Locale

{englishEntries.map( - ({ contentful_id, title, one, oneLocalized, many, manyLocalized }) => { + ({ sys: { id }, title, one, oneLocalized, many, manyLocalized }) => { const slug = slugify(title, { strict: true, lower: true }) let content = null @@ -76,7 +76,7 @@ const MediaReferencePage = ({ data }) => { } return ( -
+

{title}

{content}
@@ -86,7 +86,7 @@ const MediaReferencePage = ({ data }) => {

German Locale

{germanEntries.map( - ({ contentful_id, title, one, oneLocalized, many, manyLocalized }) => { + ({ sys: { id }, title, one, oneLocalized, many, manyLocalized }) => { const slug = slugify(title, { strict: true, lower: true }) let content = null @@ -127,7 +127,7 @@ const MediaReferencePage = ({ data }) => { } return ( -
+

{title}

{content}
@@ -144,11 +144,16 @@ export const pageQuery = graphql` query MediaReferenceQuery { default: allContentfulMediaReference( sort: { fields: title } - filter: { title: { glob: "!*Localized*" }, node_locale: { eq: "en-US" } } + filter: { + title: { glob: "!*Localized*" } + sys: { locale: { eq: "en-US" } } + } ) { nodes { title - contentful_id + sys { + id + } one { file { url @@ -163,11 +168,16 @@ export const pageQuery = graphql` } english: allContentfulMediaReference( sort: { fields: title } - filter: { title: { glob: "*Localized*" }, node_locale: { eq: "en-US" } } + filter: { + title: { glob: "*Localized*" } + sys: { locale: { eq: "en-US" } } + } ) { nodes { title - contentful_id + sys { + id + } one { file { url @@ -192,11 +202,16 @@ export const pageQuery = graphql` } german: allContentfulMediaReference( sort: { fields: title } - filter: { title: { glob: "*Localized*" }, node_locale: { eq: "de-DE" } } + filter: { + title: { glob: "*Localized*" } + sys: { locale: { eq: "de-DE" } } + } ) { nodes { title - contentful_id + sys { + id + } one { file { url diff --git a/e2e-tests/contentful/src/pages/number.js b/e2e-tests/contentful/src/pages/number.js index 5eff2ed704bba..946e9b71d3be1 100644 --- a/e2e-tests/contentful/src/pages/number.js +++ b/e2e-tests/contentful/src/pages/number.js @@ -54,8 +54,11 @@ export default NumberPage export const pageQuery = graphql` query NumberQuery { default: allContentfulNumber( - sort: { fields: contentful_id } - filter: { title: { glob: "!*Localized*" }, node_locale: { eq: "en-US" } } + sort: { fields: sys___id } + filter: { + title: { glob: "!*Localized*" } + sys: { locale: { eq: "en-US" } } + } ) { nodes { title @@ -64,8 +67,11 @@ export const pageQuery = graphql` } } english: allContentfulNumber( - sort: { fields: contentful_id } - filter: { title: { glob: "*Localized*" }, node_locale: { eq: "en-US" } } + sort: { fields: sys___id } + filter: { + title: { glob: "*Localized*" } + sys: { locale: { eq: "en-US" } } + } ) { nodes { title @@ -74,8 +80,11 @@ export const pageQuery = graphql` } } german: allContentfulNumber( - sort: { fields: contentful_id } - filter: { title: { glob: "*Localized*" }, node_locale: { eq: "de-DE" } } + sort: { fields: sys___id } + filter: { + title: { glob: "*Localized*" } + sys: { locale: { eq: "de-DE" } } + } ) { nodes { title diff --git a/e2e-tests/contentful/src/pages/rich-text.js b/e2e-tests/contentful/src/pages/rich-text.js index f7df156df3c67..a98cd6806b22c 100644 --- a/e2e-tests/contentful/src/pages/rich-text.js +++ b/e2e-tests/contentful/src/pages/rich-text.js @@ -118,7 +118,7 @@ export const pageQuery = graphql` sort: { fields: title } filter: { title: { glob: "!*Localized*|*Validated*" } - node_locale: { eq: "en-US" } + sys: { locale: { eq: "en-US" } } } ) { nodes { @@ -128,30 +128,31 @@ export const pageQuery = graphql` raw references { __typename + sys { + id + } ... on ContentfulAsset { - contentful_id fluid(maxWidth: 200) { ...GatsbyContentfulFluid } } ... on ContentfulText { - contentful_id title short } ... on ContentfulLocation { - contentful_id location { lat lon } } ... on ContentfulContentReference { - contentful_id title one { __typename - contentful_id + sys { + id + } ... on ContentfulText { title short @@ -172,7 +173,9 @@ export const pageQuery = graphql` } many { __typename - contentful_id + sys { + id + } ... on ContentfulText { title short @@ -202,7 +205,10 @@ export const pageQuery = graphql` } english: allContentfulRichText( sort: { fields: title } - filter: { title: { glob: "*Localized*" }, node_locale: { eq: "en-US" } } + filter: { + title: { glob: "*Localized*" } + sys: { locale: { eq: "en-US" } } + } ) { nodes { id @@ -214,7 +220,10 @@ export const pageQuery = graphql` } german: allContentfulRichText( sort: { fields: title } - filter: { title: { glob: "*Localized*" }, node_locale: { eq: "de-DE" } } + filter: { + title: { glob: "*Localized*" } + sys: { locale: { eq: "de-DE" } } + } ) { nodes { id diff --git a/e2e-tests/contentful/src/pages/text.js b/e2e-tests/contentful/src/pages/text.js index 360a154201c5b..923c86e743da5 100644 --- a/e2e-tests/contentful/src/pages/text.js +++ b/e2e-tests/contentful/src/pages/text.js @@ -57,7 +57,7 @@ const TextPage = ({ data }) => {

Long (Plain):

-

{longEnglish.longLocalized.longLocalized}

+

{longEnglish.longLocalized.raw}

German Locale

@@ -67,7 +67,7 @@ const TextPage = ({ data }) => {

Long (Plain):

-

{longGerman.longLocalized.longLocalized}

+

{longGerman.longLocalized.raw}

) @@ -78,28 +78,24 @@ export default TextPage export const pageQuery = graphql` query TextQuery { short: contentfulText( - node_locale: { eq: "en-US" } - contentful_id: { eq: "5ZtcN1o7KpN7J7xgiTyaXo" } + sys: { id: { eq: "5ZtcN1o7KpN7J7xgiTyaXo" }, locale: { eq: "en-US" } } ) { short } shortList: contentfulText( - node_locale: { eq: "en-US" } - contentful_id: { eq: "7b5U927WTFcQXO2Gewwa2k" } + sys: { id: { eq: "7b5U927WTFcQXO2Gewwa2k" }, locale: { eq: "en-US" } } ) { shortList } longPlain: contentfulText( - node_locale: { eq: "en-US" } - contentful_id: { eq: "6ru8cSC9hZi3Ekvtw7P77S" } + sys: { id: { eq: "6ru8cSC9hZi3Ekvtw7P77S" }, locale: { eq: "en-US" } } ) { longPlain { raw } } longMarkdownSimple: contentfulText( - node_locale: { eq: "en-US" } - contentful_id: { eq: "NyPJw0mcSuCwY2gV0zYny" } + sys: { id: { eq: "NyPJw0mcSuCwY2gV0zYny" }, locale: { eq: "en-US" } } ) { longMarkdown { childMarkdownRemark { @@ -108,8 +104,7 @@ export const pageQuery = graphql` } } longMarkdownComplex: contentfulText( - node_locale: { eq: "en-US" } - contentful_id: { eq: "3pwKS9UWsYmOguo4UdE1EB" } + sys: { id: { eq: "3pwKS9UWsYmOguo4UdE1EB" }, locale: { eq: "en-US" } } ) { longMarkdown { childMarkdownRemark { @@ -118,31 +113,27 @@ export const pageQuery = graphql` } } shortEnglish: contentfulText( - node_locale: { eq: "en-US" } - contentful_id: { eq: "2sQRyOLUexvWZj9nkzS3nN" } + sys: { id: { eq: "2sQRyOLUexvWZj9nkzS3nN" }, locale: { eq: "en-US" } } ) { shortLocalized } shortGerman: contentfulText( - node_locale: { eq: "de-DE" } - contentful_id: { eq: "2sQRyOLUexvWZj9nkzS3nN" } + sys: { id: { eq: "2sQRyOLUexvWZj9nkzS3nN" }, locale: { eq: "de-DE" } } ) { shortLocalized } longEnglish: contentfulText( - node_locale: { eq: "en-US" } - contentful_id: { eq: "5csovkwdDBqTKwSblAOHvd" } + sys: { id: { eq: "5csovkwdDBqTKwSblAOHvd" }, locale: { eq: "en-US" } } ) { longLocalized { - longLocalized + raw } } longGerman: contentfulText( - node_locale: { eq: "de-DE" } - contentful_id: { eq: "5csovkwdDBqTKwSblAOHvd" } + sys: { id: { eq: "5csovkwdDBqTKwSblAOHvd" }, locale: { eq: "de-DE" } } ) { longLocalized { - longLocalized + raw } } } diff --git a/packages/gatsby-source-contentful/package.json b/packages/gatsby-source-contentful/package.json index d89116a1a9370..4acdaa491c85d 100644 --- a/packages/gatsby-source-contentful/package.json +++ b/packages/gatsby-source-contentful/package.json @@ -16,6 +16,7 @@ "chalk": "^4.1.0", "common-tags": "^1.8.0", "contentful": "^8.1.7", + "contentful-resolve-response": "^1.3.0", "fs-extra": "^9.1.0", "gatsby-core-utils": "^2.8.0-next.0", "gatsby-plugin-utils": "^1.8.0-next.0", diff --git a/packages/gatsby-source-contentful/src/__tests__/__snapshots__/gatsby-node.js.snap b/packages/gatsby-source-contentful/src/__tests__/__snapshots__/gatsby-node.js.snap index fc2abb0a802ef..551b472a01819 100644 --- a/packages/gatsby-source-contentful/src/__tests__/__snapshots__/gatsby-node.js.snap +++ b/packages/gatsby-source-contentful/src/__tests__/__snapshots__/gatsby-node.js.snap @@ -4,12 +4,7 @@ exports[`gatsby-node should add a new blogpost and update linkedNodes 1`] = ` Object { "author___NODE": "uzfinxahlog0___15jwOBqpxqSAOy2eOO4S0m___Entry", "body___NODE": "uzfinxahlog0___1dHS3UzOqupJZY7AyeDc6s___EntrybodyTextNode", - "children": Array [ - "uzfinxahlog0___1dHS3UzOqupJZY7AyeDc6s___EntrydescriptionTextNode", - "uzfinxahlog0___1dHS3UzOqupJZY7AyeDc6s___EntrybodyTextNode", - ], - "contentful_id": "1dHS3UzOqupJZY7AyeDc6s", - "createdAt": "2020-06-03T14:22:37.720Z", + "children": Array [], "description___NODE": "uzfinxahlog0___1dHS3UzOqupJZY7AyeDc6s___EntrydescriptionTextNode", "heroImage___NODE": "uzfinxahlog0___1aaRo2sQbdfWnG8iNvnkH3___Asset", "id": "uzfinxahlog0___1dHS3UzOqupJZY7AyeDc6s___Entry", @@ -18,25 +13,21 @@ Object { "owner": "gatsby-source-contentful", "type": "ContentfulBlogPost", }, - "node_locale": "en-US", "parent": "Blog Post", "publishDate": "2020-04-01T00:00+02:00", "slug": "integration-tests", - "spaceId": "uzfinxahlog0", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "blogPost", - "id": "blogPost", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 1, + "contentType___NODE": "Blog Post", + "environmentId": "master", + "firstPublishedAt": "2020-06-03T14:22:37.720Z", + "id": "1dHS3UzOqupJZY7AyeDc6s", + "locale": "en-US", + "publishedAt": "2020-06-03T14:22:37.720Z", + "publishedVersion": 1, + "spaceId": "uzfinxahlog0", "type": "Entry", }, "title": "Integration tests", - "updatedAt": "2020-06-03T14:22:37.720Z", } `; @@ -48,12 +39,8 @@ Object { "uzfinxahlog0___2PtC9h1YqIA6kaUaIsWEQ0___Entry", "uzfinxahlog0___1dHS3UzOqupJZY7AyeDc6s___Entry", ], - "children": Array [ - "uzfinxahlog0___15jwOBqpxqSAOy2eOO4S0m___EntryshortBioTextNode", - ], + "children": Array [], "company": "ACME", - "contentful_id": "15jwOBqpxqSAOy2eOO4S0m", - "createdAt": "2020-06-03T14:17:31.246Z", "email": "john@doe.com", "facebook": "johndoe", "github": "johndoe", @@ -65,26 +52,22 @@ Object { "type": "ContentfulPerson", }, "name": "John Doe", - "node_locale": "en-US", "parent": "Person", "phone": "0176 / 1234567", "shortBio___NODE": "uzfinxahlog0___15jwOBqpxqSAOy2eOO4S0m___EntryshortBioTextNode", - "spaceId": "uzfinxahlog0", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "person", - "id": "person", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 1, + "contentType___NODE": "Person", + "environmentId": "master", + "firstPublishedAt": "2020-06-03T14:17:31.246Z", + "id": "15jwOBqpxqSAOy2eOO4S0m", + "locale": "en-US", + "publishedAt": "2020-06-03T14:17:31.246Z", + "publishedVersion": 1, + "spaceId": "uzfinxahlog0", "type": "Entry", }, "title": "Web Developer", "twitter": "johndoe", - "updatedAt": "2020-06-03T14:17:31.246Z", } `; @@ -92,12 +75,7 @@ exports[`gatsby-node should add a new blogpost and update linkedNodes 3`] = ` Object { "author___NODE": "uzfinxahlog0___15jwOBqpxqSAOy2eOO4S0m___Entry___nl", "body___NODE": "uzfinxahlog0___1dHS3UzOqupJZY7AyeDc6s___Entry___nlbodyTextNode", - "children": Array [ - "uzfinxahlog0___1dHS3UzOqupJZY7AyeDc6s___Entry___nldescriptionTextNode", - "uzfinxahlog0___1dHS3UzOqupJZY7AyeDc6s___Entry___nlbodyTextNode", - ], - "contentful_id": "1dHS3UzOqupJZY7AyeDc6s", - "createdAt": "2020-06-03T14:22:37.720Z", + "children": Array [], "description___NODE": "uzfinxahlog0___1dHS3UzOqupJZY7AyeDc6s___Entry___nldescriptionTextNode", "heroImage___NODE": "uzfinxahlog0___1aaRo2sQbdfWnG8iNvnkH3___Asset___nl", "id": "uzfinxahlog0___1dHS3UzOqupJZY7AyeDc6s___Entry___nl", @@ -106,25 +84,21 @@ Object { "owner": "gatsby-source-contentful", "type": "ContentfulBlogPost", }, - "node_locale": "nl", "parent": "Blog Post", "publishDate": "2020-04-01T00:00+02:00", "slug": "integration-tests", - "spaceId": "uzfinxahlog0", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "blogPost", - "id": "blogPost", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 1, + "contentType___NODE": "Blog Post", + "environmentId": "master", + "firstPublishedAt": "2020-06-03T14:22:37.720Z", + "id": "1dHS3UzOqupJZY7AyeDc6s", + "locale": "nl", + "publishedAt": "2020-06-03T14:22:37.720Z", + "publishedVersion": 1, + "spaceId": "uzfinxahlog0", "type": "Entry", }, "title": "Integration tests", - "updatedAt": "2020-06-03T14:22:37.720Z", } `; @@ -136,12 +110,8 @@ Object { "uzfinxahlog0___2PtC9h1YqIA6kaUaIsWEQ0___Entry___nl", "uzfinxahlog0___1dHS3UzOqupJZY7AyeDc6s___Entry___nl", ], - "children": Array [ - "uzfinxahlog0___15jwOBqpxqSAOy2eOO4S0m___Entry___nlshortBioTextNode", - ], + "children": Array [], "company": "ACME", - "contentful_id": "15jwOBqpxqSAOy2eOO4S0m", - "createdAt": "2020-06-03T14:17:31.246Z", "email": "john@doe.com", "facebook": "johndoe", "github": "johndoe", @@ -153,26 +123,22 @@ Object { "type": "ContentfulPerson", }, "name": "John Doe", - "node_locale": "nl", "parent": "Person", "phone": "0176 / 1234567", "shortBio___NODE": "uzfinxahlog0___15jwOBqpxqSAOy2eOO4S0m___Entry___nlshortBioTextNode", - "spaceId": "uzfinxahlog0", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "person", - "id": "person", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 1, + "contentType___NODE": "Person", + "environmentId": "master", + "firstPublishedAt": "2020-06-03T14:17:31.246Z", + "id": "15jwOBqpxqSAOy2eOO4S0m", + "locale": "nl", + "publishedAt": "2020-06-03T14:17:31.246Z", + "publishedVersion": 1, + "spaceId": "uzfinxahlog0", "type": "Entry", }, "title": "Web Developer", "twitter": "johndoe", - "updatedAt": "2020-06-03T14:17:31.246Z", } `; @@ -183,12 +149,8 @@ Object { "uzfinxahlog0___3K9b0esdy0q0yGqgW2g6Ke___Entry", "uzfinxahlog0___2PtC9h1YqIA6kaUaIsWEQ0___Entry", ], - "children": Array [ - "uzfinxahlog0___15jwOBqpxqSAOy2eOO4S0m___EntryshortBioTextNode", - ], + "children": Array [], "company": "ACME", - "contentful_id": "15jwOBqpxqSAOy2eOO4S0m", - "createdAt": "2020-06-03T14:17:31.246Z", "email": "john@doe.com", "facebook": "johndoe", "github": "johndoe", @@ -200,26 +162,22 @@ Object { "type": "ContentfulPerson", }, "name": "John Doe", - "node_locale": "en-US", "parent": "Person", "phone": "0176 / 1234567", "shortBio___NODE": "uzfinxahlog0___15jwOBqpxqSAOy2eOO4S0m___EntryshortBioTextNode", - "spaceId": "uzfinxahlog0", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "person", - "id": "person", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 1, + "contentType___NODE": "Person", + "environmentId": "master", + "firstPublishedAt": "2020-06-03T14:17:31.246Z", + "id": "15jwOBqpxqSAOy2eOO4S0m", + "locale": "en-US", + "publishedAt": "2020-06-03T14:17:31.246Z", + "publishedVersion": 1, + "spaceId": "uzfinxahlog0", "type": "Entry", }, "title": "Web Developer", "twitter": "johndoe", - "updatedAt": "2020-06-03T14:17:31.246Z", } `; @@ -230,12 +188,8 @@ Object { "uzfinxahlog0___3K9b0esdy0q0yGqgW2g6Ke___Entry___nl", "uzfinxahlog0___2PtC9h1YqIA6kaUaIsWEQ0___Entry___nl", ], - "children": Array [ - "uzfinxahlog0___15jwOBqpxqSAOy2eOO4S0m___Entry___nlshortBioTextNode", - ], + "children": Array [], "company": "ACME", - "contentful_id": "15jwOBqpxqSAOy2eOO4S0m", - "createdAt": "2020-06-03T14:17:31.246Z", "email": "john@doe.com", "facebook": "johndoe", "github": "johndoe", @@ -247,26 +201,22 @@ Object { "type": "ContentfulPerson", }, "name": "John Doe", - "node_locale": "nl", "parent": "Person", "phone": "0176 / 1234567", "shortBio___NODE": "uzfinxahlog0___15jwOBqpxqSAOy2eOO4S0m___Entry___nlshortBioTextNode", - "spaceId": "uzfinxahlog0", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "person", - "id": "person", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 1, + "contentType___NODE": "Person", + "environmentId": "master", + "firstPublishedAt": "2020-06-03T14:17:31.246Z", + "id": "15jwOBqpxqSAOy2eOO4S0m", + "locale": "nl", + "publishedAt": "2020-06-03T14:17:31.246Z", + "publishedVersion": 1, + "spaceId": "uzfinxahlog0", "type": "Entry", }, "title": "Web Developer", "twitter": "johndoe", - "updatedAt": "2020-06-03T14:17:31.246Z", } `; @@ -274,12 +224,7 @@ exports[`gatsby-node should update a blogpost 1`] = ` Object { "author___NODE": "uzfinxahlog0___15jwOBqpxqSAOy2eOO4S0m___Entry", "body___NODE": "uzfinxahlog0___1dHS3UzOqupJZY7AyeDc6s___EntrybodyTextNode", - "children": Array [ - "uzfinxahlog0___1dHS3UzOqupJZY7AyeDc6s___EntrydescriptionTextNode", - "uzfinxahlog0___1dHS3UzOqupJZY7AyeDc6s___EntrybodyTextNode", - ], - "contentful_id": "1dHS3UzOqupJZY7AyeDc6s", - "createdAt": "2020-06-03T14:22:37.720Z", + "children": Array [], "description___NODE": "uzfinxahlog0___1dHS3UzOqupJZY7AyeDc6s___EntrydescriptionTextNode", "heroImage___NODE": "uzfinxahlog0___1aaRo2sQbdfWnG8iNvnkH3___Asset", "id": "uzfinxahlog0___1dHS3UzOqupJZY7AyeDc6s___Entry", @@ -288,25 +233,21 @@ Object { "owner": "gatsby-source-contentful", "type": "ContentfulBlogPost", }, - "node_locale": "en-US", "parent": "Blog Post", "publishDate": "2020-05-15T00:00+02:00", "slug": "hello-world-1234", - "spaceId": "uzfinxahlog0", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "blogPost", - "id": "blogPost", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Blog Post", + "environmentId": "master", + "firstPublishedAt": "2020-06-03T14:22:37.720Z", + "id": "1dHS3UzOqupJZY7AyeDc6s", + "locale": "en-US", + "publishedAt": "2020-06-03T14:27:24.359Z", + "publishedVersion": 2, + "spaceId": "uzfinxahlog0", "type": "Entry", }, "title": "Hello world 1234", - "updatedAt": "2020-06-03T14:27:24.359Z", } `; @@ -318,12 +259,8 @@ Object { "uzfinxahlog0___2PtC9h1YqIA6kaUaIsWEQ0___Entry", "uzfinxahlog0___1dHS3UzOqupJZY7AyeDc6s___Entry", ], - "children": Array [ - "uzfinxahlog0___15jwOBqpxqSAOy2eOO4S0m___EntryshortBioTextNode", - ], + "children": Array [], "company": "ACME", - "contentful_id": "15jwOBqpxqSAOy2eOO4S0m", - "createdAt": "2020-06-03T14:17:31.246Z", "email": "john@doe.com", "facebook": "johndoe", "github": "johndoe", @@ -335,26 +272,22 @@ Object { "type": "ContentfulPerson", }, "name": "John Doe", - "node_locale": "en-US", "parent": "Person", "phone": "0176 / 1234567", "shortBio___NODE": "uzfinxahlog0___15jwOBqpxqSAOy2eOO4S0m___EntryshortBioTextNode", - "spaceId": "uzfinxahlog0", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "person", - "id": "person", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 1, + "contentType___NODE": "Person", + "environmentId": "master", + "firstPublishedAt": "2020-06-03T14:17:31.246Z", + "id": "15jwOBqpxqSAOy2eOO4S0m", + "locale": "en-US", + "publishedAt": "2020-06-03T14:17:31.246Z", + "publishedVersion": 1, + "spaceId": "uzfinxahlog0", "type": "Entry", }, "title": "Web Developer", "twitter": "johndoe", - "updatedAt": "2020-06-03T14:17:31.246Z", } `; @@ -362,12 +295,7 @@ exports[`gatsby-node should update a blogpost 3`] = ` Object { "author___NODE": "uzfinxahlog0___15jwOBqpxqSAOy2eOO4S0m___Entry___nl", "body___NODE": "uzfinxahlog0___1dHS3UzOqupJZY7AyeDc6s___Entry___nlbodyTextNode", - "children": Array [ - "uzfinxahlog0___1dHS3UzOqupJZY7AyeDc6s___Entry___nldescriptionTextNode", - "uzfinxahlog0___1dHS3UzOqupJZY7AyeDc6s___Entry___nlbodyTextNode", - ], - "contentful_id": "1dHS3UzOqupJZY7AyeDc6s", - "createdAt": "2020-06-03T14:22:37.720Z", + "children": Array [], "description___NODE": "uzfinxahlog0___1dHS3UzOqupJZY7AyeDc6s___Entry___nldescriptionTextNode", "heroImage___NODE": "uzfinxahlog0___1aaRo2sQbdfWnG8iNvnkH3___Asset___nl", "id": "uzfinxahlog0___1dHS3UzOqupJZY7AyeDc6s___Entry___nl", @@ -376,25 +304,21 @@ Object { "owner": "gatsby-source-contentful", "type": "ContentfulBlogPost", }, - "node_locale": "nl", "parent": "Blog Post", "publishDate": "2020-05-15T00:00+02:00", "slug": "hello-world-1234", - "spaceId": "uzfinxahlog0", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "blogPost", - "id": "blogPost", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Blog Post", + "environmentId": "master", + "firstPublishedAt": "2020-06-03T14:22:37.720Z", + "id": "1dHS3UzOqupJZY7AyeDc6s", + "locale": "nl", + "publishedAt": "2020-06-03T14:27:24.359Z", + "publishedVersion": 2, + "spaceId": "uzfinxahlog0", "type": "Entry", }, "title": "Hello world 1234", - "updatedAt": "2020-06-03T14:27:24.359Z", } `; @@ -406,12 +330,8 @@ Object { "uzfinxahlog0___2PtC9h1YqIA6kaUaIsWEQ0___Entry___nl", "uzfinxahlog0___1dHS3UzOqupJZY7AyeDc6s___Entry___nl", ], - "children": Array [ - "uzfinxahlog0___15jwOBqpxqSAOy2eOO4S0m___Entry___nlshortBioTextNode", - ], + "children": Array [], "company": "ACME", - "contentful_id": "15jwOBqpxqSAOy2eOO4S0m", - "createdAt": "2020-06-03T14:17:31.246Z", "email": "john@doe.com", "facebook": "johndoe", "github": "johndoe", @@ -423,41 +343,821 @@ Object { "type": "ContentfulPerson", }, "name": "John Doe", - "node_locale": "nl", "parent": "Person", "phone": "0176 / 1234567", "shortBio___NODE": "uzfinxahlog0___15jwOBqpxqSAOy2eOO4S0m___Entry___nlshortBioTextNode", - "spaceId": "uzfinxahlog0", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "person", - "id": "person", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 1, + "contentType___NODE": "Person", + "environmentId": "master", + "firstPublishedAt": "2020-06-03T14:17:31.246Z", + "id": "15jwOBqpxqSAOy2eOO4S0m", + "locale": "nl", + "publishedAt": "2020-06-03T14:17:31.246Z", + "publishedVersion": 1, + "spaceId": "uzfinxahlog0", "type": "Entry", }, "title": "Web Developer", "twitter": "johndoe", - "updatedAt": "2020-06-03T14:17:31.246Z", } `; -exports[`gatsby-node stores rich text as raw with references attached 1`] = ` -Array [ - "ahntqop9oi7x___7oHxo6bs0us9wIkq27qdyK___Entry", - "ahntqop9oi7x___6KpLS2NZyB3KAvDzWf4Ukh___Entry", - "ahntqop9oi7x___4ZQrqcrTunWiuNaavhGYNT___Asset", -] +exports[`gatsby-node stores rich text as JSON 1`] = ` +Object { + "content": Array [ + Object { + "content": Array [ + Object { + "data": Object {}, + "marks": Array [], + "nodeType": "text", + "value": "This is the homepage", + }, + ], + "data": Object {}, + "nodeType": "paragraph", + }, + Object { + "content": Array [ + Object { + "data": Object {}, + "marks": Array [], + "nodeType": "text", + "value": "Heading 1", + }, + ], + "data": Object {}, + "nodeType": "heading-1", + }, + Object { + "content": Array [ + Object { + "data": Object {}, + "marks": Array [], + "nodeType": "text", + "value": "Heading 2", + }, + ], + "data": Object {}, + "nodeType": "heading-2", + }, + Object { + "content": Array [ + Object { + "data": Object {}, + "marks": Array [], + "nodeType": "text", + "value": "Heading 3", + }, + ], + "data": Object {}, + "nodeType": "heading-3", + }, + Object { + "content": Array [ + Object { + "data": Object {}, + "marks": Array [], + "nodeType": "text", + "value": "Heading 4", + }, + ], + "data": Object {}, + "nodeType": "heading-4", + }, + Object { + "content": Array [ + Object { + "data": Object {}, + "marks": Array [], + "nodeType": "text", + "value": "Heading 5", + }, + ], + "data": Object {}, + "nodeType": "heading-5", + }, + Object { + "content": Array [ + Object { + "data": Object {}, + "marks": Array [], + "nodeType": "text", + "value": "Heading 6", + }, + ], + "data": Object {}, + "nodeType": "heading-6", + }, + Object { + "content": Array [ + Object { + "data": Object {}, + "marks": Array [], + "nodeType": "text", + "value": "This is ", + }, + Object { + "data": Object {}, + "marks": Array [ + Object { + "type": "bold", + }, + ], + "nodeType": "text", + "value": "bold ", + }, + Object { + "data": Object {}, + "marks": Array [], + "nodeType": "text", + "value": "and ", + }, + Object { + "data": Object {}, + "marks": Array [ + Object { + "type": "italic", + }, + ], + "nodeType": "text", + "value": "italic", + }, + Object { + "data": Object {}, + "marks": Array [], + "nodeType": "text", + "value": " and ", + }, + Object { + "data": Object {}, + "marks": Array [ + Object { + "type": "bold", + }, + Object { + "type": "italic", + }, + ], + "nodeType": "text", + "value": "both", + }, + ], + "data": Object {}, + "nodeType": "paragraph", + }, + Object { + "content": Array [ + Object { + "content": Array [ + Object { + "content": Array [ + Object { + "data": Object {}, + "marks": Array [], + "nodeType": "text", + "value": "Very", + }, + ], + "data": Object {}, + "nodeType": "paragraph", + }, + ], + "data": Object {}, + "nodeType": "list-item", + }, + Object { + "content": Array [ + Object { + "content": Array [ + Object { + "data": Object {}, + "marks": Array [], + "nodeType": "text", + "value": "useful", + }, + ], + "data": Object {}, + "nodeType": "paragraph", + }, + ], + "data": Object {}, + "nodeType": "list-item", + }, + Object { + "content": Array [ + Object { + "content": Array [ + Object { + "data": Object {}, + "marks": Array [], + "nodeType": "text", + "value": "list", + }, + ], + "data": Object {}, + "nodeType": "paragraph", + }, + ], + "data": Object {}, + "nodeType": "list-item", + }, + ], + "data": Object {}, + "nodeType": "unordered-list", + }, + Object { + "content": Array [ + Object { + "content": Array [ + Object { + "data": Object {}, + "marks": Array [], + "nodeType": "text", + "value": "This is a quote", + }, + ], + "data": Object {}, + "nodeType": "paragraph", + }, + ], + "data": Object {}, + "nodeType": "blockquote", + }, + Object { + "content": Array [ + Object { + "data": Object {}, + "marks": Array [], + "nodeType": "text", + "value": "Reference tests:", + }, + ], + "data": Object {}, + "nodeType": "heading-2", + }, + Object { + "content": Array [ + Object { + "data": Object {}, + "marks": Array [], + "nodeType": "text", + "value": "Inline Link: ", + }, + Object { + "content": Array [], + "data": Object { + "target": Object { + "sys": Object { + "id": "7oHxo6bs0us9wIkq27qdyK", + "linkType": "Entry", + "type": "Link", + }, + }, + }, + "nodeType": "embedded-entry-inline", + }, + Object { + "data": Object {}, + "marks": Array [], + "nodeType": "text", + "value": "", + }, + ], + "data": Object {}, + "nodeType": "paragraph", + }, + Object { + "content": Array [ + Object { + "data": Object {}, + "marks": Array [], + "nodeType": "text", + "value": "Link in list:", + }, + ], + "data": Object {}, + "nodeType": "paragraph", + }, + Object { + "content": Array [ + Object { + "content": Array [ + Object { + "content": Array [ + Object { + "data": Object {}, + "marks": Array [], + "nodeType": "text", + "value": "", + }, + Object { + "content": Array [], + "data": Object { + "target": Object { + "sys": Object { + "id": "6KpLS2NZyB3KAvDzWf4Ukh", + "linkType": "Entry", + "type": "Link", + }, + }, + }, + "nodeType": "embedded-entry-inline", + }, + Object { + "data": Object {}, + "marks": Array [], + "nodeType": "text", + "value": "", + }, + ], + "data": Object {}, + "nodeType": "paragraph", + }, + ], + "data": Object {}, + "nodeType": "list-item", + }, + ], + "data": Object {}, + "nodeType": "ordered-list", + }, + Object { + "content": Array [ + Object { + "data": Object {}, + "marks": Array [], + "nodeType": "text", + "value": "Embedded Entity:", + }, + ], + "data": Object {}, + "nodeType": "paragraph", + }, + Object { + "content": Array [], + "data": Object { + "target": Object { + "sys": Object { + "id": "7oHxo6bs0us9wIkq27qdyK", + "linkType": "Entry", + "type": "Link", + }, + }, + }, + "nodeType": "embedded-entry-block", + }, + Object { + "content": Array [ + Object { + "data": Object {}, + "marks": Array [], + "nodeType": "text", + "value": "", + }, + ], + "data": Object {}, + "nodeType": "paragraph", + }, + Object { + "content": Array [ + Object { + "data": Object {}, + "marks": Array [], + "nodeType": "text", + "value": "Embedded Asset:", + }, + ], + "data": Object {}, + "nodeType": "heading-2", + }, + Object { + "content": Array [], + "data": Object { + "target": Object { + "sys": Object { + "id": "4ZQrqcrTunWiuNaavhGYNT", + "linkType": "Asset", + "type": "Link", + }, + }, + }, + "nodeType": "embedded-asset-block", + }, + Object { + "content": Array [ + Object { + "data": Object {}, + "marks": Array [], + "nodeType": "text", + "value": "", + }, + ], + "data": Object {}, + "nodeType": "paragraph", + }, + ], + "data": Object {}, + "nodeType": "document", +} `; -exports[`gatsby-node stores rich text as raw with references attached 2`] = ` -Array [ - "ahntqop9oi7x___7oHxo6bs0us9wIkq27qdyK___Entry___nl", - "ahntqop9oi7x___6KpLS2NZyB3KAvDzWf4Ukh___Entry___nl", - "ahntqop9oi7x___4ZQrqcrTunWiuNaavhGYNT___Asset___nl", -] +exports[`gatsby-node stores rich text as JSON 2`] = ` +Object { + "content": Array [ + Object { + "content": Array [ + Object { + "data": Object {}, + "marks": Array [], + "nodeType": "text", + "value": "This is the homepage", + }, + ], + "data": Object {}, + "nodeType": "paragraph", + }, + Object { + "content": Array [ + Object { + "data": Object {}, + "marks": Array [], + "nodeType": "text", + "value": "Heading 1", + }, + ], + "data": Object {}, + "nodeType": "heading-1", + }, + Object { + "content": Array [ + Object { + "data": Object {}, + "marks": Array [], + "nodeType": "text", + "value": "Heading 2", + }, + ], + "data": Object {}, + "nodeType": "heading-2", + }, + Object { + "content": Array [ + Object { + "data": Object {}, + "marks": Array [], + "nodeType": "text", + "value": "Heading 3", + }, + ], + "data": Object {}, + "nodeType": "heading-3", + }, + Object { + "content": Array [ + Object { + "data": Object {}, + "marks": Array [], + "nodeType": "text", + "value": "Heading 4", + }, + ], + "data": Object {}, + "nodeType": "heading-4", + }, + Object { + "content": Array [ + Object { + "data": Object {}, + "marks": Array [], + "nodeType": "text", + "value": "Heading 5", + }, + ], + "data": Object {}, + "nodeType": "heading-5", + }, + Object { + "content": Array [ + Object { + "data": Object {}, + "marks": Array [], + "nodeType": "text", + "value": "Heading 6", + }, + ], + "data": Object {}, + "nodeType": "heading-6", + }, + Object { + "content": Array [ + Object { + "data": Object {}, + "marks": Array [], + "nodeType": "text", + "value": "This is ", + }, + Object { + "data": Object {}, + "marks": Array [ + Object { + "type": "bold", + }, + ], + "nodeType": "text", + "value": "bold ", + }, + Object { + "data": Object {}, + "marks": Array [], + "nodeType": "text", + "value": "and ", + }, + Object { + "data": Object {}, + "marks": Array [ + Object { + "type": "italic", + }, + ], + "nodeType": "text", + "value": "italic", + }, + Object { + "data": Object {}, + "marks": Array [], + "nodeType": "text", + "value": " and ", + }, + Object { + "data": Object {}, + "marks": Array [ + Object { + "type": "bold", + }, + Object { + "type": "italic", + }, + ], + "nodeType": "text", + "value": "both", + }, + ], + "data": Object {}, + "nodeType": "paragraph", + }, + Object { + "content": Array [ + Object { + "content": Array [ + Object { + "content": Array [ + Object { + "data": Object {}, + "marks": Array [], + "nodeType": "text", + "value": "Very", + }, + ], + "data": Object {}, + "nodeType": "paragraph", + }, + ], + "data": Object {}, + "nodeType": "list-item", + }, + Object { + "content": Array [ + Object { + "content": Array [ + Object { + "data": Object {}, + "marks": Array [], + "nodeType": "text", + "value": "useful", + }, + ], + "data": Object {}, + "nodeType": "paragraph", + }, + ], + "data": Object {}, + "nodeType": "list-item", + }, + Object { + "content": Array [ + Object { + "content": Array [ + Object { + "data": Object {}, + "marks": Array [], + "nodeType": "text", + "value": "list", + }, + ], + "data": Object {}, + "nodeType": "paragraph", + }, + ], + "data": Object {}, + "nodeType": "list-item", + }, + ], + "data": Object {}, + "nodeType": "unordered-list", + }, + Object { + "content": Array [ + Object { + "content": Array [ + Object { + "data": Object {}, + "marks": Array [], + "nodeType": "text", + "value": "This is a quote", + }, + ], + "data": Object {}, + "nodeType": "paragraph", + }, + ], + "data": Object {}, + "nodeType": "blockquote", + }, + Object { + "content": Array [ + Object { + "data": Object {}, + "marks": Array [], + "nodeType": "text", + "value": "Reference tests:", + }, + ], + "data": Object {}, + "nodeType": "heading-2", + }, + Object { + "content": Array [ + Object { + "data": Object {}, + "marks": Array [], + "nodeType": "text", + "value": "Inline Link: ", + }, + Object { + "content": Array [], + "data": Object { + "target": Object { + "sys": Object { + "id": "7oHxo6bs0us9wIkq27qdyK", + "linkType": "Entry", + "type": "Link", + }, + }, + }, + "nodeType": "embedded-entry-inline", + }, + Object { + "data": Object {}, + "marks": Array [], + "nodeType": "text", + "value": "", + }, + ], + "data": Object {}, + "nodeType": "paragraph", + }, + Object { + "content": Array [ + Object { + "data": Object {}, + "marks": Array [], + "nodeType": "text", + "value": "Link in list:", + }, + ], + "data": Object {}, + "nodeType": "paragraph", + }, + Object { + "content": Array [ + Object { + "content": Array [ + Object { + "content": Array [ + Object { + "data": Object {}, + "marks": Array [], + "nodeType": "text", + "value": "", + }, + Object { + "content": Array [], + "data": Object { + "target": Object { + "sys": Object { + "id": "6KpLS2NZyB3KAvDzWf4Ukh", + "linkType": "Entry", + "type": "Link", + }, + }, + }, + "nodeType": "embedded-entry-inline", + }, + Object { + "data": Object {}, + "marks": Array [], + "nodeType": "text", + "value": "", + }, + ], + "data": Object {}, + "nodeType": "paragraph", + }, + ], + "data": Object {}, + "nodeType": "list-item", + }, + ], + "data": Object {}, + "nodeType": "ordered-list", + }, + Object { + "content": Array [ + Object { + "data": Object {}, + "marks": Array [], + "nodeType": "text", + "value": "Embedded Entity:", + }, + ], + "data": Object {}, + "nodeType": "paragraph", + }, + Object { + "content": Array [], + "data": Object { + "target": Object { + "sys": Object { + "id": "7oHxo6bs0us9wIkq27qdyK", + "linkType": "Entry", + "type": "Link", + }, + }, + }, + "nodeType": "embedded-entry-block", + }, + Object { + "content": Array [ + Object { + "data": Object {}, + "marks": Array [], + "nodeType": "text", + "value": "", + }, + ], + "data": Object {}, + "nodeType": "paragraph", + }, + Object { + "content": Array [ + Object { + "data": Object {}, + "marks": Array [], + "nodeType": "text", + "value": "Embedded Asset:", + }, + ], + "data": Object {}, + "nodeType": "heading-2", + }, + Object { + "content": Array [], + "data": Object { + "target": Object { + "sys": Object { + "id": "4ZQrqcrTunWiuNaavhGYNT", + "linkType": "Asset", + "type": "Link", + }, + }, + }, + "nodeType": "embedded-asset-block", + }, + Object { + "content": Array [ + Object { + "data": Object {}, + "marks": Array [], + "nodeType": "text", + "value": "", + }, + ], + "data": Object {}, + "nodeType": "paragraph", + }, + ], + "data": Object {}, + "nodeType": "document", +} `; diff --git a/packages/gatsby-source-contentful/src/__tests__/__snapshots__/normalize.js.snap b/packages/gatsby-source-contentful/src/__tests__/__snapshots__/normalize.js.snap index 919d1add0b746..79a3e27ed963f 100644 --- a/packages/gatsby-source-contentful/src/__tests__/__snapshots__/normalize.js.snap +++ b/packages/gatsby-source-contentful/src/__tests__/__snapshots__/normalize.js.snap @@ -2206,8 +2206,6 @@ Array [ Array [ Object { "children": Array [], - "contentful_id": "c3wtvPBbBjiMKqKKga8I2Cu", - "createdAt": "2017-06-27T09:35:37.178Z", "description": "Brand logo", "file": Object { "contentType": "image/jpeg", @@ -2226,22 +2224,23 @@ Array [ "contentDigest": "2017-06-27T09:35:37.178Z", "type": "ContentfulAsset", }, - "node_locale": "en-US", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:37.178Z", + "id": "c3wtvPBbBjiMKqKKga8I2Cu", + "locale": "en-US", + "publishedAt": "2017-06-27T09:35:37.178Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Normann Copenhagen", - "updatedAt": "2017-06-27T09:35:37.178Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c3wtvPBbBjiMKqKKga8I2Cu", - "createdAt": "2017-06-27T09:35:37.178Z", "description": "Brand logo", "file": Object { "contentType": "image/jpeg", @@ -2260,22 +2259,23 @@ Array [ "contentDigest": "2017-06-27T09:35:37.178Z", "type": "ContentfulAsset", }, - "node_locale": "de", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:37.178Z", + "id": "c3wtvPBbBjiMKqKKga8I2Cu", + "locale": "de", + "publishedAt": "2017-06-27T09:35:37.178Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Normann Copenhagen", - "updatedAt": "2017-06-27T09:35:37.178Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "KTRF62Q4gg60q6WCsWKw8", - "createdAt": "2017-06-27T09:35:37.064Z", "description": "by Lemnos", "file": Object { "contentType": "image/jpeg", @@ -2294,22 +2294,23 @@ Array [ "contentDigest": "2017-06-27T09:35:37.064Z", "type": "ContentfulAsset", }, - "node_locale": "en-US", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:37.064Z", + "id": "KTRF62Q4gg60q6WCsWKw8", + "locale": "en-US", + "publishedAt": "2017-06-27T09:35:37.064Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "SoSo Wall Clock", - "updatedAt": "2017-06-27T09:35:37.064Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "KTRF62Q4gg60q6WCsWKw8", - "createdAt": "2017-06-27T09:35:37.064Z", "description": "by Lemnos", "file": Object { "contentType": "image/jpeg", @@ -2328,22 +2329,23 @@ Array [ "contentDigest": "2017-06-27T09:35:37.064Z", "type": "ContentfulAsset", }, - "node_locale": "de", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:37.064Z", + "id": "KTRF62Q4gg60q6WCsWKw8", + "locale": "de", + "publishedAt": "2017-06-27T09:35:37.064Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "SoSo Wall Clock", - "updatedAt": "2017-06-27T09:35:37.064Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "Xc0ny7GWsMEMCeASWO2um", - "createdAt": "2017-06-27T09:35:37.027Z", "description": "Merchandise image", "file": Object { "contentType": "image/jpeg", @@ -2362,22 +2364,23 @@ Array [ "contentDigest": "2017-06-27T09:35:37.027Z", "type": "ContentfulAsset", }, - "node_locale": "en-US", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:37.027Z", + "id": "Xc0ny7GWsMEMCeASWO2um", + "locale": "en-US", + "publishedAt": "2017-06-27T09:35:37.027Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Hudson Wall Cup ", - "updatedAt": "2017-06-27T09:35:37.027Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "Xc0ny7GWsMEMCeASWO2um", - "createdAt": "2017-06-27T09:35:37.027Z", "description": "Merchandise image", "file": Object { "contentType": "image/jpeg", @@ -2396,22 +2399,23 @@ Array [ "contentDigest": "2017-06-27T09:35:37.027Z", "type": "ContentfulAsset", }, - "node_locale": "de", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:37.027Z", + "id": "Xc0ny7GWsMEMCeASWO2um", + "locale": "de", + "publishedAt": "2017-06-27T09:35:37.027Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Hudson Wall Cup ", - "updatedAt": "2017-06-27T09:35:37.027Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c2Y8LhXLnYAYqKCGEWG4EKI", - "createdAt": "2017-06-27T09:35:37.012Z", "description": "company logo", "file": Object { "contentType": "image/jpeg", @@ -2430,22 +2434,23 @@ Array [ "contentDigest": "2017-06-27T09:35:37.012Z", "type": "ContentfulAsset", }, - "node_locale": "en-US", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:37.012Z", + "id": "c2Y8LhXLnYAYqKCGEWG4EKI", + "locale": "en-US", + "publishedAt": "2017-06-27T09:35:37.012Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Lemnos", - "updatedAt": "2017-06-27T09:35:37.012Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c2Y8LhXLnYAYqKCGEWG4EKI", - "createdAt": "2017-06-27T09:35:37.012Z", "description": "company logo", "file": Object { "contentType": "image/jpeg", @@ -2464,22 +2469,23 @@ Array [ "contentDigest": "2017-06-27T09:35:37.012Z", "type": "ContentfulAsset", }, - "node_locale": "de", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:37.012Z", + "id": "c2Y8LhXLnYAYqKCGEWG4EKI", + "locale": "de", + "publishedAt": "2017-06-27T09:35:37.012Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Lemnos", - "updatedAt": "2017-06-27T09:35:37.012Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c6t4HKjytPi0mYgs240wkG", - "createdAt": "2017-06-27T09:35:36.633Z", "description": "Category icon set", "file": Object { "contentType": "image/png", @@ -2498,22 +2504,23 @@ Array [ "contentDigest": "2017-06-27T09:35:36.633Z", "type": "ContentfulAsset", }, - "node_locale": "en-US", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:36.633Z", + "id": "c6t4HKjytPi0mYgs240wkG", + "locale": "en-US", + "publishedAt": "2017-06-27T09:35:36.633Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Toys", - "updatedAt": "2017-06-27T09:35:36.633Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c6t4HKjytPi0mYgs240wkG", - "createdAt": "2017-06-27T09:35:36.633Z", "description": "Category icon set", "file": Object { "contentType": "image/png", @@ -2532,22 +2539,23 @@ Array [ "contentDigest": "2017-06-27T09:35:36.633Z", "type": "ContentfulAsset", }, - "node_locale": "de", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:36.633Z", + "id": "c6t4HKjytPi0mYgs240wkG", + "locale": "de", + "publishedAt": "2017-06-27T09:35:36.633Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Toys", - "updatedAt": "2017-06-27T09:35:36.633Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c1MgbdJNTsMWKI0W68oYqkU", - "createdAt": "2017-06-27T09:35:36.182Z", "description": "Brand logo", "file": Object { "contentType": "image/jpeg", @@ -2566,22 +2574,23 @@ Array [ "contentDigest": "2017-06-27T09:35:36.182Z", "type": "ContentfulAsset", }, - "node_locale": "en-US", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:36.182Z", + "id": "c1MgbdJNTsMWKI0W68oYqkU", + "locale": "en-US", + "publishedAt": "2017-06-27T09:35:36.182Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Chive logo", - "updatedAt": "2017-06-27T09:35:36.182Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c1MgbdJNTsMWKI0W68oYqkU", - "createdAt": "2017-06-27T09:35:36.182Z", "description": "Brand logo", "file": Object { "contentType": "image/jpeg", @@ -2600,22 +2609,23 @@ Array [ "contentDigest": "2017-06-27T09:35:36.182Z", "type": "ContentfulAsset", }, - "node_locale": "de", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:36.182Z", + "id": "c1MgbdJNTsMWKI0W68oYqkU", + "locale": "de", + "publishedAt": "2017-06-27T09:35:36.182Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Chive logo", - "updatedAt": "2017-06-27T09:35:36.182Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c6m5AJ9vMPKc8OUoQeoCS4o", - "createdAt": "2017-06-27T09:35:36.172Z", "description": "category icon", "file": Object { "contentType": "image/png", @@ -2634,22 +2644,23 @@ Array [ "contentDigest": "2017-06-27T09:35:36.172Z", "type": "ContentfulAsset", }, - "node_locale": "en-US", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:36.172Z", + "id": "c6m5AJ9vMPKc8OUoQeoCS4o", + "locale": "en-US", + "publishedAt": "2017-06-27T09:35:36.172Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Home and Kitchen", - "updatedAt": "2017-06-27T09:35:36.172Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c6m5AJ9vMPKc8OUoQeoCS4o", - "createdAt": "2017-06-27T09:35:36.172Z", "description": "category icon", "file": Object { "contentType": "image/png", @@ -2668,22 +2679,23 @@ Array [ "contentDigest": "2017-06-27T09:35:36.172Z", "type": "ContentfulAsset", }, - "node_locale": "de", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:36.172Z", + "id": "c6m5AJ9vMPKc8OUoQeoCS4o", + "locale": "de", + "publishedAt": "2017-06-27T09:35:36.172Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Home and Kitchen", - "updatedAt": "2017-06-27T09:35:36.172Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c4zj1ZOfHgQ8oqgaSKm4Qo2", - "createdAt": "2017-06-27T09:35:36.168Z", "description": "Brand logo", "file": Object { "contentType": "image/jpeg", @@ -2702,22 +2714,23 @@ Array [ "contentDigest": "2017-06-27T09:35:36.168Z", "type": "ContentfulAsset", }, - "node_locale": "en-US", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:36.168Z", + "id": "c4zj1ZOfHgQ8oqgaSKm4Qo2", + "locale": "en-US", + "publishedAt": "2017-06-27T09:35:36.168Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Playsam", - "updatedAt": "2017-06-27T09:35:36.168Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c4zj1ZOfHgQ8oqgaSKm4Qo2", - "createdAt": "2017-06-27T09:35:36.168Z", "description": "Brand logo", "file": Object { "contentType": "image/jpeg", @@ -2736,22 +2749,23 @@ Array [ "contentDigest": "2017-06-27T09:35:36.168Z", "type": "ContentfulAsset", }, - "node_locale": "de", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:36.168Z", + "id": "c4zj1ZOfHgQ8oqgaSKm4Qo2", + "locale": "de", + "publishedAt": "2017-06-27T09:35:36.168Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Playsam", - "updatedAt": "2017-06-27T09:35:36.168Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "wtrHxeu3zEoEce2MokCSi", - "createdAt": "2017-06-27T09:35:36.037Z", "description": "Merchandise photo", "file": Object { "contentType": "image/jpeg", @@ -2770,22 +2784,23 @@ Array [ "contentDigest": "2017-06-27T09:35:36.037Z", "type": "ContentfulAsset", }, - "node_locale": "en-US", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:36.037Z", + "id": "wtrHxeu3zEoEce2MokCSi", + "locale": "en-US", + "publishedAt": "2017-06-27T09:35:36.037Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Playsam Streamliner", - "updatedAt": "2017-06-27T09:35:36.037Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "wtrHxeu3zEoEce2MokCSi", - "createdAt": "2017-06-27T09:35:36.037Z", "description": "Merchandise photo", "file": Object { "contentType": "image/jpeg", @@ -2804,22 +2819,23 @@ Array [ "contentDigest": "2017-06-27T09:35:36.037Z", "type": "ContentfulAsset", }, - "node_locale": "de", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:36.037Z", + "id": "wtrHxeu3zEoEce2MokCSi", + "locale": "de", + "publishedAt": "2017-06-27T09:35:36.037Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Playsam Streamliner", - "updatedAt": "2017-06-27T09:35:36.037Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c10TkaLheGeQG6qQGqWYqUI", - "createdAt": "2017-06-27T09:35:36.032Z", "description": "Merchandise photo", "file": Object { "contentType": "image/jpeg", @@ -2838,22 +2854,23 @@ Array [ "contentDigest": "2017-06-27T09:35:36.032Z", "type": "ContentfulAsset", }, - "node_locale": "en-US", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:36.032Z", + "id": "c10TkaLheGeQG6qQGqWYqUI", + "locale": "en-US", + "publishedAt": "2017-06-27T09:35:36.032Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Whisk beaters", - "updatedAt": "2017-06-27T09:35:36.032Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c10TkaLheGeQG6qQGqWYqUI", - "createdAt": "2017-06-27T09:35:36.032Z", "description": "Merchandise photo", "file": Object { "contentType": "image/jpeg", @@ -2872,22 +2889,23 @@ Array [ "contentDigest": "2017-06-27T09:35:36.032Z", "type": "ContentfulAsset", }, - "node_locale": "de", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:36.032Z", + "id": "c10TkaLheGeQG6qQGqWYqUI", + "locale": "de", + "publishedAt": "2017-06-27T09:35:36.032Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Whisk beaters", - "updatedAt": "2017-06-27T09:35:36.032Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c6s3iG2OVmoUcosmA8ocqsG", - "createdAt": "2017-06-27T09:35:35.994Z", "description": "Category icon set", "file": Object { "contentType": "image/png", @@ -2906,22 +2924,23 @@ Array [ "contentDigest": "2017-06-27T09:35:35.994Z", "type": "ContentfulAsset", }, - "node_locale": "en-US", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:35.994Z", + "id": "c6s3iG2OVmoUcosmA8ocqsG", + "locale": "en-US", + "publishedAt": "2017-06-27T09:35:35.994Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "House icon", - "updatedAt": "2017-06-27T09:35:35.994Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c6s3iG2OVmoUcosmA8ocqsG", - "createdAt": "2017-06-27T09:35:35.994Z", "description": "Category icon set", "file": Object { "contentType": "image/png", @@ -2940,15 +2959,18 @@ Array [ "contentDigest": "2017-06-27T09:35:35.994Z", "type": "ContentfulAsset", }, - "node_locale": "de", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:35.994Z", + "id": "c6s3iG2OVmoUcosmA8ocqsG", + "locale": "de", + "publishedAt": "2017-06-27T09:35:35.994Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "House icon", - "updatedAt": "2017-06-27T09:35:35.994Z", }, ], ] @@ -2958,7 +2980,6 @@ exports[`Process contentful data (by id) creates nodes for each entry 1`] = ` Array [ Array [ Object { - "children": Array [], "description": null, "displayField": "title", "id": "c6XwpTaSiiI2Ak2Ww0oi6qa", @@ -2967,8 +2988,14 @@ Array [ "type": "ContentfulContentType", }, "name": "Category", - "parent": null, "sys": Object { + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:31.492Z", + "id": "c6XwpTaSiiI2Ak2Ww0oi6qa", + "locale": "en-US", + "publishedAt": "2017-06-27T09:40:52.685Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "ContentType", }, }, @@ -2981,35 +3008,26 @@ Array [ "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry", ], "categoryDescription___NODE": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___EntrycategoryDescriptionTextNode", - "children": Array [ - "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___EntrytitleTextNode", - "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___EntrycategoryDescriptionTextNode", - ], - "contentful_id": "c7LAnCobuuWYSqks6wAwY2a", - "createdAt": "2017-06-27T09:35:44.000Z", + "children": Array [], "icon___NODE": "rocybtov1ozk___c6m5AJ9vMPKc8OUoQeoCS4o___Asset", "id": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry", "internal": Object { "contentDigest": "2020-06-30T11:22:54.201Z", "type": "ContentfulC6XwpTaSiiI2Ak2Ww0Oi6Qa", }, - "node_locale": "en-US", "parent": "c6XwpTaSiiI2Ak2Ww0oi6qa", - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "6XwpTaSiiI2Ak2Ww0oi6qa", - "id": "c6XwpTaSiiI2Ak2Ww0oi6qa", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 4, + "contentType___NODE": "c6XwpTaSiiI2Ak2Ww0oi6qa", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.000Z", + "id": "c7LAnCobuuWYSqks6wAwY2a", + "locale": "en-US", + "publishedAt": "2020-06-30T11:22:54.201Z", + "publishedVersion": 4, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "title___NODE": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___EntrytitleTextNode", - "updatedAt": "2020-06-30T11:22:54.201Z", }, ], Array [ @@ -3018,108 +3036,82 @@ Array [ "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry", ], "categoryDescription___NODE": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___EntrycategoryDescriptionTextNode", - "children": Array [ - "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___EntrytitleTextNode", - "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___EntrycategoryDescriptionTextNode", - ], - "contentful_id": "c24DPGBDeGEaYy8ms4Y8QMQ", - "createdAt": "2017-06-27T09:35:44.992Z", + "children": Array [], "icon___NODE": "rocybtov1ozk___c6t4HKjytPi0mYgs240wkG___Asset", "id": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry", "internal": Object { "contentDigest": "2017-06-27T09:46:43.477Z", "type": "ContentfulC6XwpTaSiiI2Ak2Ww0Oi6Qa", }, - "node_locale": "en-US", "parent": "c6XwpTaSiiI2Ak2Ww0oi6qa", - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "6XwpTaSiiI2Ak2Ww0oi6qa", - "id": "c6XwpTaSiiI2Ak2Ww0oi6qa", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "c6XwpTaSiiI2Ak2Ww0oi6qa", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.992Z", + "id": "c24DPGBDeGEaYy8ms4Y8QMQ", + "locale": "en-US", + "publishedAt": "2017-06-27T09:46:43.477Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "title___NODE": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___EntrytitleTextNode", - "updatedAt": "2017-06-27T09:46:43.477Z", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___EntrytitleTextNode", "internal": Object { "content": "Home & Kitchen", "contentDigest": "2020-06-30T11:22:54.201Z", "mediaType": "text/markdown", - "type": "contentfulC6XwpTaSiiI2Ak2Ww0Oi6QaTitleTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry", - "sys": Object { - "type": "Entry", - }, - "title": "Home & Kitchen", + "raw": "Home & Kitchen", }, ], Array [ Object { - "categoryDescription": "Shop for furniture, bedding, bath, vacuums, kitchen products, and more", - "children": Array [], "id": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___EntrycategoryDescriptionTextNode", "internal": Object { "content": "Shop for furniture, bedding, bath, vacuums, kitchen products, and more", "contentDigest": "2020-06-30T11:22:54.201Z", "mediaType": "text/markdown", - "type": "contentfulC6XwpTaSiiI2Ak2Ww0Oi6QaCategoryDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry", - "sys": Object { - "type": "Entry", - }, + "raw": "Shop for furniture, bedding, bath, vacuums, kitchen products, and more", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___EntrytitleTextNode", "internal": Object { "content": "Toys", "contentDigest": "2017-06-27T09:46:43.477Z", "mediaType": "text/markdown", - "type": "contentfulC6XwpTaSiiI2Ak2Ww0Oi6QaTitleTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry", - "sys": Object { - "type": "Entry", - }, - "title": "Toys", + "raw": "Toys", }, ], Array [ Object { - "categoryDescription": "Shop for toys, games, educational aids", - "children": Array [], "id": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___EntrycategoryDescriptionTextNode", "internal": Object { "content": "Shop for toys, games, educational aids", "contentDigest": "2017-06-27T09:46:43.477Z", "mediaType": "text/markdown", - "type": "contentfulC6XwpTaSiiI2Ak2Ww0Oi6QaCategoryDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry", - "sys": Object { - "type": "Entry", - }, + "raw": "Shop for toys, games, educational aids", }, ], Array [ Object { - "children": Array [], "description": null, "displayField": "title", "id": "c6XwpTaSiiI2Ak2Ww0oi6qa", @@ -3128,8 +3120,14 @@ Array [ "type": "ContentfulContentType", }, "name": "Category", - "parent": null, "sys": Object { + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:31.492Z", + "id": "c6XwpTaSiiI2Ak2Ww0oi6qa", + "locale": "de", + "publishedAt": "2017-06-27T09:40:52.685Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "ContentType", }, }, @@ -3142,35 +3140,26 @@ Array [ "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry___de", ], "categoryDescription___NODE": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry___decategoryDescriptionTextNode", - "children": Array [ - "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry___detitleTextNode", - "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry___decategoryDescriptionTextNode", - ], - "contentful_id": "c7LAnCobuuWYSqks6wAwY2a", - "createdAt": "2017-06-27T09:35:44.000Z", + "children": Array [], "icon___NODE": "rocybtov1ozk___c6m5AJ9vMPKc8OUoQeoCS4o___Asset___de", "id": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry___de", "internal": Object { "contentDigest": "2020-06-30T11:22:54.201Z", "type": "ContentfulC6XwpTaSiiI2Ak2Ww0Oi6Qa", }, - "node_locale": "de", "parent": "c6XwpTaSiiI2Ak2Ww0oi6qa", - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "6XwpTaSiiI2Ak2Ww0oi6qa", - "id": "c6XwpTaSiiI2Ak2Ww0oi6qa", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 4, + "contentType___NODE": "c6XwpTaSiiI2Ak2Ww0oi6qa", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.000Z", + "id": "c7LAnCobuuWYSqks6wAwY2a", + "locale": "de", + "publishedAt": "2020-06-30T11:22:54.201Z", + "publishedVersion": 4, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "title___NODE": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry___detitleTextNode", - "updatedAt": "2020-06-30T11:22:54.201Z", }, ], Array [ @@ -3179,108 +3168,82 @@ Array [ "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry___de", ], "categoryDescription___NODE": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry___decategoryDescriptionTextNode", - "children": Array [ - "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry___detitleTextNode", - "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry___decategoryDescriptionTextNode", - ], - "contentful_id": "c24DPGBDeGEaYy8ms4Y8QMQ", - "createdAt": "2017-06-27T09:35:44.992Z", + "children": Array [], "icon___NODE": "rocybtov1ozk___c6t4HKjytPi0mYgs240wkG___Asset___de", "id": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry___de", "internal": Object { "contentDigest": "2017-06-27T09:46:43.477Z", "type": "ContentfulC6XwpTaSiiI2Ak2Ww0Oi6Qa", }, - "node_locale": "de", "parent": "c6XwpTaSiiI2Ak2Ww0oi6qa", - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "6XwpTaSiiI2Ak2Ww0oi6qa", - "id": "c6XwpTaSiiI2Ak2Ww0oi6qa", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "c6XwpTaSiiI2Ak2Ww0oi6qa", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.992Z", + "id": "c24DPGBDeGEaYy8ms4Y8QMQ", + "locale": "de", + "publishedAt": "2017-06-27T09:46:43.477Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "title___NODE": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry___detitleTextNode", - "updatedAt": "2017-06-27T09:46:43.477Z", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry___detitleTextNode", "internal": Object { "content": "Haus & Küche", "contentDigest": "2020-06-30T11:22:54.201Z", "mediaType": "text/markdown", - "type": "contentfulC6XwpTaSiiI2Ak2Ww0Oi6QaTitleTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry___de", - "sys": Object { - "type": "Entry", - }, - "title": "Haus & Küche", + "raw": "Haus & Küche", }, ], Array [ Object { - "categoryDescription": "Shop für Möbel, Bettwäsche, Bad, Staubsauger, Küchenprodukte und vieles mehr", - "children": Array [], "id": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry___decategoryDescriptionTextNode", "internal": Object { "content": "Shop für Möbel, Bettwäsche, Bad, Staubsauger, Küchenprodukte und vieles mehr", "contentDigest": "2020-06-30T11:22:54.201Z", "mediaType": "text/markdown", - "type": "contentfulC6XwpTaSiiI2Ak2Ww0Oi6QaCategoryDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry___de", - "sys": Object { - "type": "Entry", - }, + "raw": "Shop für Möbel, Bettwäsche, Bad, Staubsauger, Küchenprodukte und vieles mehr", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry___detitleTextNode", "internal": Object { "content": "Spielzeug", "contentDigest": "2017-06-27T09:46:43.477Z", "mediaType": "text/markdown", - "type": "contentfulC6XwpTaSiiI2Ak2Ww0Oi6QaTitleTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry___de", - "sys": Object { - "type": "Entry", - }, - "title": "Spielzeug", + "raw": "Spielzeug", }, ], Array [ Object { - "categoryDescription": "Spielzeugladen, Spiele, Lernhilfen", - "children": Array [], "id": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry___decategoryDescriptionTextNode", "internal": Object { "content": "Spielzeugladen, Spiele, Lernhilfen", "contentDigest": "2017-06-27T09:46:43.477Z", "mediaType": "text/markdown", - "type": "contentfulC6XwpTaSiiI2Ak2Ww0Oi6QaCategoryDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry___de", - "sys": Object { - "type": "Entry", - }, + "raw": "Spielzeugladen, Spiele, Lernhilfen", }, ], Array [ Object { - "children": Array [], "description": null, "displayField": "companyName", "id": "sFzTZbSuM8coEwygeUYes", @@ -3289,8 +3252,14 @@ Array [ "type": "ContentfulContentType", }, "name": "Brand", - "parent": null, "sys": Object { + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:31.534Z", + "id": "sFzTZbSuM8coEwygeUYes", + "locale": "en-US", + "publishedAt": "2017-06-27T09:41:09.339Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "ContentType", }, }, @@ -3301,14 +3270,9 @@ Array [ "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry", "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry", ], - "children": Array [ - "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___EntrycompanyNameTextNode", - "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___EntrycompanyDescriptionTextNode", - ], + "children": Array [], "companyDescription___NODE": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___EntrycompanyDescriptionTextNode", "companyName___NODE": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___EntrycompanyNameTextNode", - "contentful_id": "c651CQ8rLoIYCeY6G0QG22q", - "createdAt": "2017-06-27T09:35:43.997Z", "email": "normann@normann-copenhagen.com", "id": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___Entry", "internal": Object { @@ -3316,26 +3280,22 @@ Array [ "type": "ContentfulSFzTZbSuM8CoEwygeUYes", }, "logo___NODE": "rocybtov1ozk___c3wtvPBbBjiMKqKKga8I2Cu___Asset", - "node_locale": "en-US", "parent": "sFzTZbSuM8coEwygeUYes", "phone": Array [ "+45 35 55 44 59", ], - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "sFzTZbSuM8coEwygeUYes", - "id": "sFzTZbSuM8coEwygeUYes", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "sFzTZbSuM8coEwygeUYes", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:43.997Z", + "id": "c651CQ8rLoIYCeY6G0QG22q", + "locale": "en-US", + "publishedAt": "2017-06-27T09:55:16.820Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "twitter": "https://twitter.com/NormannCPH", - "updatedAt": "2017-06-27T09:55:16.820Z", "website": "http://www.normann-copenhagen.com/", }, ], @@ -3344,14 +3304,9 @@ Array [ "c2pqfxujwe8qsykum0u6w8m___NODE": Array [ "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry", ], - "children": Array [ - "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___EntrycompanyNameTextNode", - "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___EntrycompanyDescriptionTextNode", - ], + "children": Array [], "companyDescription___NODE": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___EntrycompanyDescriptionTextNode", "companyName___NODE": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___EntrycompanyNameTextNode", - "contentful_id": "c4LgMotpNF6W20YKmuemW0a", - "createdAt": "2017-06-27T09:35:44.396Z", "email": "info@acgears.com", "id": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry", "internal": Object { @@ -3359,25 +3314,21 @@ Array [ "type": "ContentfulSFzTZbSuM8CoEwygeUYes", }, "logo___NODE": "rocybtov1ozk___c2Y8LhXLnYAYqKCGEWG4EKI___Asset", - "node_locale": "en-US", "parent": "sFzTZbSuM8coEwygeUYes", "phone": Array [ "+1 212 260 2269", ], - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "sFzTZbSuM8coEwygeUYes", - "id": "sFzTZbSuM8coEwygeUYes", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "sFzTZbSuM8coEwygeUYes", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.396Z", + "id": "c4LgMotpNF6W20YKmuemW0a", + "locale": "en-US", + "publishedAt": "2017-06-27T09:51:15.647Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, - "updatedAt": "2017-06-27T09:51:15.647Z", "website": "http://www.lemnos.jp/en/", }, ], @@ -3386,94 +3337,74 @@ Array [ "c2pqfxujwe8qsykum0u6w8m___NODE": Array [ "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry", ], - "children": Array [ - "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___EntrycompanyNameTextNode", - "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___EntrycompanyDescriptionTextNode", - ], + "children": Array [], "companyDescription___NODE": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___EntrycompanyDescriptionTextNode", "companyName___NODE": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___EntrycompanyNameTextNode", - "contentful_id": "JrePkDVYomE8AwcuCUyMi", - "createdAt": "2017-06-27T09:35:44.988Z", "id": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___Entry", "internal": Object { "contentDigest": "2017-06-27T09:50:36.937Z", "type": "ContentfulSFzTZbSuM8CoEwygeUYes", }, "logo___NODE": "rocybtov1ozk___c4zj1ZOfHgQ8oqgaSKm4Qo2___Asset", - "node_locale": "en-US", "parent": "sFzTZbSuM8coEwygeUYes", - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "sFzTZbSuM8coEwygeUYes", - "id": "sFzTZbSuM8coEwygeUYes", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "sFzTZbSuM8coEwygeUYes", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.988Z", + "id": "JrePkDVYomE8AwcuCUyMi", + "locale": "en-US", + "publishedAt": "2017-06-27T09:50:36.937Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, - "updatedAt": "2017-06-27T09:50:36.937Z", "website": "http://playsam.com/", }, ], Array [ Object { - "children": Array [], - "companyName": "Normann Copenhagen", "id": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___EntrycompanyNameTextNode", "internal": Object { "content": "Normann Copenhagen", "contentDigest": "2017-06-27T09:55:16.820Z", "mediaType": "text/markdown", - "type": "contentfulSFzTZbSuM8CoEwygeUYesCompanyNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___Entry", - "sys": Object { - "type": "Entry", - }, + "raw": "Normann Copenhagen", }, ], Array [ Object { - "children": Array [], - "companyDescription": "Normann Copenhagen is a way of living - a mindset. We love to challenge the conventional design rules. This is why you will find traditional materials put into untraditional use such as a Stone Hook made of Icelandic stones, a vase made out of silicon and last but not least a dog made out of plastic.", "id": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___EntrycompanyDescriptionTextNode", "internal": Object { "content": "Normann Copenhagen is a way of living - a mindset. We love to challenge the conventional design rules. This is why you will find traditional materials put into untraditional use such as a Stone Hook made of Icelandic stones, a vase made out of silicon and last but not least a dog made out of plastic.", "contentDigest": "2017-06-27T09:55:16.820Z", "mediaType": "text/markdown", - "type": "contentfulSFzTZbSuM8CoEwygeUYesCompanyDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___Entry", - "sys": Object { - "type": "Entry", - }, + "raw": "Normann Copenhagen is a way of living - a mindset. We love to challenge the conventional design rules. This is why you will find traditional materials put into untraditional use such as a Stone Hook made of Icelandic stones, a vase made out of silicon and last but not least a dog made out of plastic.", }, ], Array [ Object { - "children": Array [], - "companyName": "Lemnos", "id": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___EntrycompanyNameTextNode", "internal": Object { "content": "Lemnos", "contentDigest": "2017-06-27T09:51:15.647Z", "mediaType": "text/markdown", - "type": "contentfulSFzTZbSuM8CoEwygeUYesCompanyNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry", - "sys": Object { - "type": "Entry", - }, + "raw": "Lemnos", }, ], Array [ Object { - "children": Array [], - "companyDescription": "TAKATA Lemnos Inc. was founded in 1947 as a brass casting manufacturing industry in Takaoka-city, Toyama Prefecture, Japan and we launched out into the full-scale business trade with Seiko Clock Co., Ltd. since 1966. + "id": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___EntrycompanyDescriptionTextNode", + "internal": Object { + "content": "TAKATA Lemnos Inc. was founded in 1947 as a brass casting manufacturing industry in Takaoka-city, Toyama Prefecture, Japan and we launched out into the full-scale business trade with Seiko Clock Co., Ltd. since 1966. We entered into the development for the original planning from late 1980 and \\"Lemnos Brand\\" recognized as the global design clock by a masterpiece \\"HOLA\\" designed by Kazuo KAWASAKI which released in 1989. @@ -3484,9 +3415,12 @@ Lemnos brand products are now highly praised from the design shops and the inter In recent years, we also have been given high priority to develop interior accessories making full use of our traditional techniques by the founding manufacturer and we always focus our minds on the development for the new Lemnos products in the new market. Our Lemnos products are made carefully by our craftsmen finely honed skillful techniques in Japan. They surely bring out the attractiveness of the materials to the maximum and create fine products not being influenced on the fashion trend accordingly. TAKATA Lemnos Inc. definitely would like to be innovative and continuously propose the beauty lasts forever.", - "id": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___EntrycompanyDescriptionTextNode", - "internal": Object { - "content": "TAKATA Lemnos Inc. was founded in 1947 as a brass casting manufacturing industry in Takaoka-city, Toyama Prefecture, Japan and we launched out into the full-scale business trade with Seiko Clock Co., Ltd. since 1966. + "contentDigest": "2017-06-27T09:51:15.647Z", + "mediaType": "text/markdown", + "type": "ContentfulNodeTypeText", + }, + "parent": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry", + "raw": "TAKATA Lemnos Inc. was founded in 1947 as a brass casting manufacturing industry in Takaoka-city, Toyama Prefecture, Japan and we launched out into the full-scale business trade with Seiko Clock Co., Ltd. since 1966. We entered into the development for the original planning from late 1980 and \\"Lemnos Brand\\" recognized as the global design clock by a masterpiece \\"HOLA\\" designed by Kazuo KAWASAKI which released in 1989. @@ -3497,53 +3431,36 @@ Lemnos brand products are now highly praised from the design shops and the inter In recent years, we also have been given high priority to develop interior accessories making full use of our traditional techniques by the founding manufacturer and we always focus our minds on the development for the new Lemnos products in the new market. Our Lemnos products are made carefully by our craftsmen finely honed skillful techniques in Japan. They surely bring out the attractiveness of the materials to the maximum and create fine products not being influenced on the fashion trend accordingly. TAKATA Lemnos Inc. definitely would like to be innovative and continuously propose the beauty lasts forever.", - "contentDigest": "2017-06-27T09:51:15.647Z", - "mediaType": "text/markdown", - "type": "contentfulSFzTZbSuM8CoEwygeUYesCompanyDescriptionTextNode", - }, - "parent": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry", - "sys": Object { - "type": "Entry", - }, }, ], Array [ Object { - "children": Array [], - "companyName": "Playsam", "id": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___EntrycompanyNameTextNode", "internal": Object { "content": "Playsam", "contentDigest": "2017-06-27T09:50:36.937Z", "mediaType": "text/markdown", - "type": "contentfulSFzTZbSuM8CoEwygeUYesCompanyNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___Entry", - "sys": Object { - "type": "Entry", - }, + "raw": "Playsam", }, ], Array [ Object { - "children": Array [], - "companyDescription": "Playsam is the leading Scandinavian design company for executive wooden toy gift. Scandinavian design playful creativity, integrity and sophistication are Playsam. Scandinavian design and wooden toy makes Playsam gift lovely to the world of design since 1984.", "id": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___EntrycompanyDescriptionTextNode", "internal": Object { "content": "Playsam is the leading Scandinavian design company for executive wooden toy gift. Scandinavian design playful creativity, integrity and sophistication are Playsam. Scandinavian design and wooden toy makes Playsam gift lovely to the world of design since 1984.", "contentDigest": "2017-06-27T09:50:36.937Z", "mediaType": "text/markdown", - "type": "contentfulSFzTZbSuM8CoEwygeUYesCompanyDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___Entry", - "sys": Object { - "type": "Entry", - }, + "raw": "Playsam is the leading Scandinavian design company for executive wooden toy gift. Scandinavian design playful creativity, integrity and sophistication are Playsam. Scandinavian design and wooden toy makes Playsam gift lovely to the world of design since 1984.", }, ], Array [ Object { - "children": Array [], "description": null, "displayField": "companyName", "id": "sFzTZbSuM8coEwygeUYes", @@ -3552,8 +3469,14 @@ Our Lemnos products are made carefully by our craftsmen finely honed skillful te "type": "ContentfulContentType", }, "name": "Brand", - "parent": null, "sys": Object { + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:31.534Z", + "id": "sFzTZbSuM8coEwygeUYes", + "locale": "de", + "publishedAt": "2017-06-27T09:41:09.339Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "ContentType", }, }, @@ -3564,14 +3487,9 @@ Our Lemnos products are made carefully by our craftsmen finely honed skillful te "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry___de", "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry___de", ], - "children": Array [ - "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___Entry___decompanyNameTextNode", - "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___Entry___decompanyDescriptionTextNode", - ], + "children": Array [], "companyDescription___NODE": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___Entry___decompanyDescriptionTextNode", "companyName___NODE": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___Entry___decompanyNameTextNode", - "contentful_id": "c651CQ8rLoIYCeY6G0QG22q", - "createdAt": "2017-06-27T09:35:43.997Z", "email": "normann@normann-copenhagen.com", "id": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___Entry___de", "internal": Object { @@ -3579,26 +3497,22 @@ Our Lemnos products are made carefully by our craftsmen finely honed skillful te "type": "ContentfulSFzTZbSuM8CoEwygeUYes", }, "logo___NODE": "rocybtov1ozk___c3wtvPBbBjiMKqKKga8I2Cu___Asset___de", - "node_locale": "de", "parent": "sFzTZbSuM8coEwygeUYes", "phone": Array [ "+45 35 55 44 59", ], - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "sFzTZbSuM8coEwygeUYes", - "id": "sFzTZbSuM8coEwygeUYes", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "sFzTZbSuM8coEwygeUYes", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:43.997Z", + "id": "c651CQ8rLoIYCeY6G0QG22q", + "locale": "de", + "publishedAt": "2017-06-27T09:55:16.820Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "twitter": "https://twitter.com/NormannCPH", - "updatedAt": "2017-06-27T09:55:16.820Z", "website": "http://www.normann-copenhagen.com/", }, ], @@ -3607,14 +3521,9 @@ Our Lemnos products are made carefully by our craftsmen finely honed skillful te "c2pqfxujwe8qsykum0u6w8m___NODE": Array [ "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry___de", ], - "children": Array [ - "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry___decompanyNameTextNode", - "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry___decompanyDescriptionTextNode", - ], + "children": Array [], "companyDescription___NODE": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry___decompanyDescriptionTextNode", "companyName___NODE": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry___decompanyNameTextNode", - "contentful_id": "c4LgMotpNF6W20YKmuemW0a", - "createdAt": "2017-06-27T09:35:44.396Z", "email": "info@acgears.com", "id": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry___de", "internal": Object { @@ -3622,25 +3531,21 @@ Our Lemnos products are made carefully by our craftsmen finely honed skillful te "type": "ContentfulSFzTZbSuM8CoEwygeUYes", }, "logo___NODE": "rocybtov1ozk___c2Y8LhXLnYAYqKCGEWG4EKI___Asset___de", - "node_locale": "de", "parent": "sFzTZbSuM8coEwygeUYes", "phone": Array [ "+1 212 260 2269", ], - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "sFzTZbSuM8coEwygeUYes", - "id": "sFzTZbSuM8coEwygeUYes", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "sFzTZbSuM8coEwygeUYes", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.396Z", + "id": "c4LgMotpNF6W20YKmuemW0a", + "locale": "de", + "publishedAt": "2017-06-27T09:51:15.647Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, - "updatedAt": "2017-06-27T09:51:15.647Z", "website": "http://www.lemnos.jp/en/", }, ], @@ -3649,94 +3554,74 @@ Our Lemnos products are made carefully by our craftsmen finely honed skillful te "c2pqfxujwe8qsykum0u6w8m___NODE": Array [ "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry___de", ], - "children": Array [ - "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___Entry___decompanyNameTextNode", - "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___Entry___decompanyDescriptionTextNode", - ], + "children": Array [], "companyDescription___NODE": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___Entry___decompanyDescriptionTextNode", "companyName___NODE": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___Entry___decompanyNameTextNode", - "contentful_id": "JrePkDVYomE8AwcuCUyMi", - "createdAt": "2017-06-27T09:35:44.988Z", "id": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___Entry___de", "internal": Object { "contentDigest": "2017-06-27T09:50:36.937Z", "type": "ContentfulSFzTZbSuM8CoEwygeUYes", }, "logo___NODE": "rocybtov1ozk___c4zj1ZOfHgQ8oqgaSKm4Qo2___Asset___de", - "node_locale": "de", "parent": "sFzTZbSuM8coEwygeUYes", - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "sFzTZbSuM8coEwygeUYes", - "id": "sFzTZbSuM8coEwygeUYes", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "sFzTZbSuM8coEwygeUYes", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.988Z", + "id": "JrePkDVYomE8AwcuCUyMi", + "locale": "de", + "publishedAt": "2017-06-27T09:50:36.937Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, - "updatedAt": "2017-06-27T09:50:36.937Z", "website": "http://playsam.com/", }, ], Array [ Object { - "children": Array [], - "companyName": "Normann Copenhagen", "id": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___Entry___decompanyNameTextNode", "internal": Object { "content": "Normann Copenhagen", "contentDigest": "2017-06-27T09:55:16.820Z", "mediaType": "text/markdown", - "type": "contentfulSFzTZbSuM8CoEwygeUYesCompanyNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___Entry___de", - "sys": Object { - "type": "Entry", - }, + "raw": "Normann Copenhagen", }, ], Array [ Object { - "children": Array [], - "companyDescription": "Normann Kopenhagen ist eine Art zu leben - eine Denkweise. Wir lieben es, die konventionellen Designregeln herauszufordern. Aus diesem Grund finden Sie traditionelle Materialien, die in untraditionelle Verwendung wie ein Steinhaken aus isländischen Steinen, eine Vase aus Silizium und last but not least ein Hund aus Kunststoff.", "id": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___Entry___decompanyDescriptionTextNode", "internal": Object { "content": "Normann Kopenhagen ist eine Art zu leben - eine Denkweise. Wir lieben es, die konventionellen Designregeln herauszufordern. Aus diesem Grund finden Sie traditionelle Materialien, die in untraditionelle Verwendung wie ein Steinhaken aus isländischen Steinen, eine Vase aus Silizium und last but not least ein Hund aus Kunststoff.", "contentDigest": "2017-06-27T09:55:16.820Z", "mediaType": "text/markdown", - "type": "contentfulSFzTZbSuM8CoEwygeUYesCompanyDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___Entry___de", - "sys": Object { - "type": "Entry", - }, + "raw": "Normann Kopenhagen ist eine Art zu leben - eine Denkweise. Wir lieben es, die konventionellen Designregeln herauszufordern. Aus diesem Grund finden Sie traditionelle Materialien, die in untraditionelle Verwendung wie ein Steinhaken aus isländischen Steinen, eine Vase aus Silizium und last but not least ein Hund aus Kunststoff.", }, ], Array [ Object { - "children": Array [], - "companyName": "Lemnos", "id": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry___decompanyNameTextNode", "internal": Object { "content": "Lemnos", "contentDigest": "2017-06-27T09:51:15.647Z", "mediaType": "text/markdown", - "type": "contentfulSFzTZbSuM8CoEwygeUYesCompanyNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry___de", - "sys": Object { - "type": "Entry", - }, + "raw": "Lemnos", }, ], Array [ Object { - "children": Array [], - "companyDescription": "TAKATA Lemnos Inc. wurde im Jahre 1947 als Messing-Casting-Fertigungsindustrie in Takaoka-Stadt, Toyama Prefecture, Japan gegründet und wir starteten seit 1966 mit der Seiko Clock Co., Ltd. + "id": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry___decompanyDescriptionTextNode", + "internal": Object { + "content": "TAKATA Lemnos Inc. wurde im Jahre 1947 als Messing-Casting-Fertigungsindustrie in Takaoka-Stadt, Toyama Prefecture, Japan gegründet und wir starteten seit 1966 mit der Seiko Clock Co., Ltd. Wir haben die Entwicklung für die ursprüngliche Planung ab Ende 1980 eingegangen und \\"Lemnos Brand\\" wurde als globale Designuhr von einem Meisterwerk \\"HOLA\\" von Kazuo KAWASAKI entworfen, das 1989 erschien. @@ -3747,9 +3632,12 @@ Lemnos Markenprodukte werden nun von den Designläden und den Innenhandelsgesch In den vergangenen Jahren haben wir auch eine hohe Priorität für die Entwicklung von Innenausstattung, die den traditionellen Techniken des Gründungsherstellers voll ausnutzt, und wir konzentrieren uns immer auf die Entwicklung der neuen Lemnos-Produkte im neuen Markt. Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliffen geschickten Techniken in Japan gemacht. Sie bringen sicherlich die Attraktivität der Materialien auf das Maximum und schaffen feine Produkte nicht beeinflusst auf die Mode-Trend entsprechend. TAKATA Lemnos Inc. möchte definitiv innovativ sein und ständig vorschlagen, die Schönheit dauert ewig.", - "id": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry___decompanyDescriptionTextNode", - "internal": Object { - "content": "TAKATA Lemnos Inc. wurde im Jahre 1947 als Messing-Casting-Fertigungsindustrie in Takaoka-Stadt, Toyama Prefecture, Japan gegründet und wir starteten seit 1966 mit der Seiko Clock Co., Ltd. + "contentDigest": "2017-06-27T09:51:15.647Z", + "mediaType": "text/markdown", + "type": "ContentfulNodeTypeText", + }, + "parent": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry___de", + "raw": "TAKATA Lemnos Inc. wurde im Jahre 1947 als Messing-Casting-Fertigungsindustrie in Takaoka-Stadt, Toyama Prefecture, Japan gegründet und wir starteten seit 1966 mit der Seiko Clock Co., Ltd. Wir haben die Entwicklung für die ursprüngliche Planung ab Ende 1980 eingegangen und \\"Lemnos Brand\\" wurde als globale Designuhr von einem Meisterwerk \\"HOLA\\" von Kazuo KAWASAKI entworfen, das 1989 erschien. @@ -3760,53 +3648,36 @@ Lemnos Markenprodukte werden nun von den Designläden und den Innenhandelsgesch In den vergangenen Jahren haben wir auch eine hohe Priorität für die Entwicklung von Innenausstattung, die den traditionellen Techniken des Gründungsherstellers voll ausnutzt, und wir konzentrieren uns immer auf die Entwicklung der neuen Lemnos-Produkte im neuen Markt. Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliffen geschickten Techniken in Japan gemacht. Sie bringen sicherlich die Attraktivität der Materialien auf das Maximum und schaffen feine Produkte nicht beeinflusst auf die Mode-Trend entsprechend. TAKATA Lemnos Inc. möchte definitiv innovativ sein und ständig vorschlagen, die Schönheit dauert ewig.", - "contentDigest": "2017-06-27T09:51:15.647Z", - "mediaType": "text/markdown", - "type": "contentfulSFzTZbSuM8CoEwygeUYesCompanyDescriptionTextNode", - }, - "parent": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry___de", - "sys": Object { - "type": "Entry", - }, }, ], Array [ Object { - "children": Array [], - "companyName": "Playsam", "id": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___Entry___decompanyNameTextNode", "internal": Object { "content": "Playsam", "contentDigest": "2017-06-27T09:50:36.937Z", "mediaType": "text/markdown", - "type": "contentfulSFzTZbSuM8CoEwygeUYesCompanyNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___Entry___de", - "sys": Object { - "type": "Entry", - }, + "raw": "Playsam", }, ], Array [ Object { - "children": Array [], - "companyDescription": "Playsam ist die führende skandinavische Designfirma für Executive Holzspielzeug Geschenk. Skandinavisches Design spielerische Kreativität, Integrität und Raffinesse sind Playsam. Skandinavisches Design und hölzernes Spielzeug macht Playsam Geschenk schön in die Welt des Designs seit 1984.", "id": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___Entry___decompanyDescriptionTextNode", "internal": Object { "content": "Playsam ist die führende skandinavische Designfirma für Executive Holzspielzeug Geschenk. Skandinavisches Design spielerische Kreativität, Integrität und Raffinesse sind Playsam. Skandinavisches Design und hölzernes Spielzeug macht Playsam Geschenk schön in die Welt des Designs seit 1984.", "contentDigest": "2017-06-27T09:50:36.937Z", "mediaType": "text/markdown", - "type": "contentfulSFzTZbSuM8CoEwygeUYesCompanyDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___Entry___de", - "sys": Object { - "type": "Entry", - }, + "raw": "Playsam ist die führende skandinavische Designfirma für Executive Holzspielzeug Geschenk. Skandinavisches Design spielerische Kreativität, Integrität und Raffinesse sind Playsam. Skandinavisches Design und hölzernes Spielzeug macht Playsam Geschenk schön in die Welt des Designs seit 1984.", }, ], Array [ Object { - "children": Array [], "description": null, "displayField": "productName", "id": "c2PqfXUJwE8qSYKuM0U6w8M", @@ -3815,8 +3686,14 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "type": "ContentfulContentType", }, "name": "Product", - "parent": null, "sys": Object { + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:31.538Z", + "id": "c2PqfXUJwE8qSYKuM0U6w8M", + "locale": "en-US", + "publishedAt": "2017-06-27T09:40:36.821Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "ContentType", }, }, @@ -3827,12 +3704,7 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "categories___NODE": Array [ "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry", ], - "children": Array [ - "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___EntryproductNameTextNode", - "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___EntryproductDescriptionTextNode", - ], - "contentful_id": "c5KsDBWseXY6QegucYAoacS", - "createdAt": "2017-06-27T09:35:43.996Z", + "children": Array [], "id": "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry", "image___NODE": Array [ "rocybtov1ozk___wtrHxeu3zEoEce2MokCSi___Asset", @@ -3841,7 +3713,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "contentDigest": "2017-06-27T09:56:59.626Z", "type": "ContentfulC2PqfXuJwE8QSyKuM0U6W8M", }, - "node_locale": "en-US", "parent": "c2PqfXUJwE8qSYKuM0U6w8M", "price": 44, "productDescription___NODE": "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___EntryproductDescriptionTextNode", @@ -3850,17 +3721,15 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "sizetypecolor": "Length: 135 mm | color: espresso, green, or icar (white)", "sku": "B001R6JUZ2", "slug": "playsam-streamliner-classic-car-espresso", - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "2PqfXUJwE8qSYKuM0U6w8M", - "id": "c2PqfXUJwE8qSYKuM0U6w8M", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "c2PqfXUJwE8qSYKuM0U6w8M", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:43.996Z", + "id": "c5KsDBWseXY6QegucYAoacS", + "locale": "en-US", + "publishedAt": "2017-06-27T09:56:59.626Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "tags": Array [ @@ -3870,7 +3739,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "sweden", "design", ], - "updatedAt": "2017-06-27T09:56:59.626Z", "website": "http://www.amazon.com/dp/B001R6JUZ2/", }, ], @@ -3880,12 +3748,7 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "categories___NODE": Array [ "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry", ], - "children": Array [ - "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___EntryproductNameTextNode", - "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___EntryproductDescriptionTextNode", - ], - "contentful_id": "c3DVqIYj4dOwwcKu6sgqOgg", - "createdAt": "2017-06-27T09:35:44.006Z", + "children": Array [], "id": "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry", "image___NODE": Array [ "rocybtov1ozk___Xc0ny7GWsMEMCeASWO2um___Asset", @@ -3894,7 +3757,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "contentDigest": "2017-06-27T09:54:51.159Z", "type": "ContentfulC2PqfXuJwE8QSyKuM0U6W8M", }, - "node_locale": "en-US", "parent": "c2PqfXUJwE8qSYKuM0U6w8M", "price": 11, "productDescription___NODE": "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___EntryproductDescriptionTextNode", @@ -3903,17 +3765,15 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "sizetypecolor": "3 x 3 x 5 inches; 5.3 ounces", "sku": "B00E82D7I8", "slug": "hudson-wall-cup", - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "2PqfXUJwE8qSYKuM0U6w8M", - "id": "c2PqfXUJwE8qSYKuM0U6w8M", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "c2PqfXUJwE8qSYKuM0U6w8M", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.006Z", + "id": "c3DVqIYj4dOwwcKu6sgqOgg", + "locale": "en-US", + "publishedAt": "2017-06-27T09:54:51.159Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "tags": Array [ @@ -3921,7 +3781,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "flowers", "accessories", ], - "updatedAt": "2017-06-27T09:54:51.159Z", "website": "http://www.amazon.com/dp/B00E82D7I8/", }, ], @@ -3931,12 +3790,7 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "categories___NODE": Array [ "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry", ], - "children": Array [ - "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___EntryproductNameTextNode", - "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___EntryproductDescriptionTextNode", - ], - "contentful_id": "c6dbjWqNd9SqccegcqYq224", - "createdAt": "2017-06-27T09:35:44.049Z", + "children": Array [], "id": "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry", "image___NODE": Array [ "rocybtov1ozk___c10TkaLheGeQG6qQGqWYqUI___Asset", @@ -3945,7 +3799,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "contentDigest": "2017-06-27T09:53:23.179Z", "type": "ContentfulC2PqfXuJwE8QSyKuM0U6W8M", }, - "node_locale": "en-US", "parent": "c2PqfXUJwE8qSYKuM0U6w8M", "price": 22, "productDescription___NODE": "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___EntryproductDescriptionTextNode", @@ -3954,17 +3807,15 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "sizetypecolor": "0.8 x 0.8 x 11.2 inches; 1.6 ounces", "sku": "B0081F2CCK", "slug": "whisk-beater", - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "2PqfXUJwE8qSYKuM0U6w8M", - "id": "c2PqfXUJwE8qSYKuM0U6w8M", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "c2PqfXUJwE8qSYKuM0U6w8M", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.049Z", + "id": "c6dbjWqNd9SqccegcqYq224", + "locale": "en-US", + "publishedAt": "2017-06-27T09:53:23.179Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "tags": Array [ @@ -3974,7 +3825,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "scandinavia", "design", ], - "updatedAt": "2017-06-27T09:53:23.179Z", "website": "http://www.amazon.com/dp/B0081F2CCK/", }, ], @@ -3984,12 +3834,7 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "categories___NODE": Array [ "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry", ], - "children": Array [ - "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___EntryproductNameTextNode", - "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___EntryproductDescriptionTextNode", - ], - "contentful_id": "c4BqrajvA8E6qwgkieoqmqO", - "createdAt": "2017-06-27T09:35:44.130Z", + "children": Array [], "id": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry", "image___NODE": Array [ "rocybtov1ozk___KTRF62Q4gg60q6WCsWKw8___Asset", @@ -3998,7 +3843,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "contentDigest": "2017-06-27T09:52:29.215Z", "type": "ContentfulC2PqfXuJwE8QSyKuM0U6W8M", }, - "node_locale": "en-US", "parent": "c2PqfXUJwE8qSYKuM0U6w8M", "price": 120, "productDescription___NODE": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___EntryproductDescriptionTextNode", @@ -4007,17 +3851,15 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "sizetypecolor": "10\\" x 2.2\\"", "sku": "B00MG4ULK2", "slug": "soso-wall-clock", - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "2PqfXUJwE8qSYKuM0U6w8M", - "id": "c2PqfXUJwE8qSYKuM0U6w8M", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "c2PqfXUJwE8qSYKuM0U6w8M", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.130Z", + "id": "c4BqrajvA8E6qwgkieoqmqO", + "locale": "en-US", + "publishedAt": "2017-06-27T09:52:29.215Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "tags": Array [ @@ -4027,149 +3869,115 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "yellow", "gifts", ], - "updatedAt": "2017-06-27T09:52:29.215Z", "website": "http://store.dwell.com/soso-wall-clock.html", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___EntryproductNameTextNode", "internal": Object { "content": "Playsam Streamliner Classic Car, Espresso", "contentDigest": "2017-06-27T09:56:59.626Z", "mediaType": "text/markdown", - "type": "contentfulC2PqfXuJwE8QSyKuM0U6W8MProductNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry", - "productName": "Playsam Streamliner Classic Car, Espresso", - "sys": Object { - "type": "Entry", - }, + "raw": "Playsam Streamliner Classic Car, Espresso", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___EntryproductDescriptionTextNode", "internal": Object { "content": "A classic Playsam design, the Streamliner Classic Car has been selected as Swedish Design Classic by the Swedish National Museum for its inventive style and sleek surface. It's no wonder that this wooden car has also been a long-standing favorite for children both big and small!", "contentDigest": "2017-06-27T09:56:59.626Z", "mediaType": "text/markdown", - "type": "contentfulC2PqfXuJwE8QSyKuM0U6W8MProductDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry", - "productDescription": "A classic Playsam design, the Streamliner Classic Car has been selected as Swedish Design Classic by the Swedish National Museum for its inventive style and sleek surface. It's no wonder that this wooden car has also been a long-standing favorite for children both big and small!", - "sys": Object { - "type": "Entry", - }, + "raw": "A classic Playsam design, the Streamliner Classic Car has been selected as Swedish Design Classic by the Swedish National Museum for its inventive style and sleek surface. It's no wonder that this wooden car has also been a long-standing favorite for children both big and small!", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___EntryproductNameTextNode", "internal": Object { "content": "Hudson Wall Cup", "contentDigest": "2017-06-27T09:54:51.159Z", "mediaType": "text/markdown", - "type": "contentfulC2PqfXuJwE8QSyKuM0U6W8MProductNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry", - "productName": "Hudson Wall Cup", - "sys": Object { - "type": "Entry", - }, + "raw": "Hudson Wall Cup", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___EntryproductDescriptionTextNode", "internal": Object { "content": "Wall Hanging Glass Flower Vase and Terrarium", "contentDigest": "2017-06-27T09:54:51.159Z", "mediaType": "text/markdown", - "type": "contentfulC2PqfXuJwE8QSyKuM0U6W8MProductDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry", - "productDescription": "Wall Hanging Glass Flower Vase and Terrarium", - "sys": Object { - "type": "Entry", - }, + "raw": "Wall Hanging Glass Flower Vase and Terrarium", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___EntryproductNameTextNode", "internal": Object { "content": "Whisk Beater", "contentDigest": "2017-06-27T09:53:23.179Z", "mediaType": "text/markdown", - "type": "contentfulC2PqfXuJwE8QSyKuM0U6W8MProductNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry", - "productName": "Whisk Beater", - "sys": Object { - "type": "Entry", - }, + "raw": "Whisk Beater", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___EntryproductDescriptionTextNode", "internal": Object { "content": "A creative little whisk that comes in 8 different colors. Handy and easy to clean after use. A great gift idea.", "contentDigest": "2017-06-27T09:53:23.179Z", "mediaType": "text/markdown", - "type": "contentfulC2PqfXuJwE8QSyKuM0U6W8MProductDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry", - "productDescription": "A creative little whisk that comes in 8 different colors. Handy and easy to clean after use. A great gift idea.", - "sys": Object { - "type": "Entry", - }, + "raw": "A creative little whisk that comes in 8 different colors. Handy and easy to clean after use. A great gift idea.", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___EntryproductNameTextNode", "internal": Object { "content": "SoSo Wall Clock", "contentDigest": "2017-06-27T09:52:29.215Z", "mediaType": "text/markdown", - "type": "contentfulC2PqfXuJwE8QSyKuM0U6W8MProductNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry", - "productName": "SoSo Wall Clock", - "sys": Object { - "type": "Entry", - }, + "raw": "SoSo Wall Clock", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___EntryproductDescriptionTextNode", "internal": Object { "content": "The newly released SoSo Clock from Lemnos marries simple, clean design and bold, striking features. Its saturated marigold face is a lively pop of color to white or grey walls, but would also pair nicely with navy and maroon. Where most clocks feature numbers at the border of the clock, the SoSo brings them in tight to the middle, leaving a wide space between the numbers and the slight frame. The hour hand provides a nice interruption to the black and yellow of the clock - it is featured in a brilliant white. Despite its bold color and contrast, the SoSo maintains a clean, pure aesthetic that is suitable to a variety of contemporary interiors.", "contentDigest": "2017-06-27T09:52:29.215Z", "mediaType": "text/markdown", - "type": "contentfulC2PqfXuJwE8QSyKuM0U6W8MProductDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry", - "productDescription": "The newly released SoSo Clock from Lemnos marries simple, clean design and bold, striking features. Its saturated marigold face is a lively pop of color to white or grey walls, but would also pair nicely with navy and maroon. Where most clocks feature numbers at the border of the clock, the SoSo brings them in tight to the middle, leaving a wide space between the numbers and the slight frame. The hour hand provides a nice interruption to the black and yellow of the clock - it is featured in a brilliant white. Despite its bold color and contrast, the SoSo maintains a clean, pure aesthetic that is suitable to a variety of contemporary interiors.", - "sys": Object { - "type": "Entry", - }, + "raw": "The newly released SoSo Clock from Lemnos marries simple, clean design and bold, striking features. Its saturated marigold face is a lively pop of color to white or grey walls, but would also pair nicely with navy and maroon. Where most clocks feature numbers at the border of the clock, the SoSo brings them in tight to the middle, leaving a wide space between the numbers and the slight frame. The hour hand provides a nice interruption to the black and yellow of the clock - it is featured in a brilliant white. Despite its bold color and contrast, the SoSo maintains a clean, pure aesthetic that is suitable to a variety of contemporary interiors.", }, ], Array [ Object { - "children": Array [], "description": null, "displayField": "productName", "id": "c2PqfXUJwE8qSYKuM0U6w8M", @@ -4178,8 +3986,14 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "type": "ContentfulContentType", }, "name": "Product", - "parent": null, "sys": Object { + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:31.538Z", + "id": "c2PqfXUJwE8qSYKuM0U6w8M", + "locale": "de", + "publishedAt": "2017-06-27T09:40:36.821Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "ContentType", }, }, @@ -4190,12 +4004,7 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "categories___NODE": Array [ "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry___de", ], - "children": Array [ - "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry___deproductNameTextNode", - "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry___deproductDescriptionTextNode", - ], - "contentful_id": "c5KsDBWseXY6QegucYAoacS", - "createdAt": "2017-06-27T09:35:43.996Z", + "children": Array [], "id": "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry___de", "image___NODE": Array [ "rocybtov1ozk___wtrHxeu3zEoEce2MokCSi___Asset___de", @@ -4204,7 +4013,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "contentDigest": "2017-06-27T09:56:59.626Z", "type": "ContentfulC2PqfXuJwE8QSyKuM0U6W8M", }, - "node_locale": "de", "parent": "c2PqfXUJwE8qSYKuM0U6w8M", "price": 44, "productDescription___NODE": "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry___deproductDescriptionTextNode", @@ -4213,17 +4021,15 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "sizetypecolor": "Length: 135 mm | color: espresso, green, or icar (white)", "sku": "B001R6JUZ2", "slug": "playsam-streamliner-classic-car-espresso", - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "2PqfXUJwE8qSYKuM0U6w8M", - "id": "c2PqfXUJwE8qSYKuM0U6w8M", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "c2PqfXUJwE8qSYKuM0U6w8M", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:43.996Z", + "id": "c5KsDBWseXY6QegucYAoacS", + "locale": "de", + "publishedAt": "2017-06-27T09:56:59.626Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "tags": Array [ @@ -4233,7 +4039,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "sweden", "design", ], - "updatedAt": "2017-06-27T09:56:59.626Z", "website": "http://www.amazon.com/dp/B001R6JUZ2/", }, ], @@ -4243,12 +4048,7 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "categories___NODE": Array [ "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry___de", ], - "children": Array [ - "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry___deproductNameTextNode", - "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry___deproductDescriptionTextNode", - ], - "contentful_id": "c3DVqIYj4dOwwcKu6sgqOgg", - "createdAt": "2017-06-27T09:35:44.006Z", + "children": Array [], "id": "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry___de", "image___NODE": Array [ "rocybtov1ozk___Xc0ny7GWsMEMCeASWO2um___Asset___de", @@ -4257,7 +4057,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "contentDigest": "2017-06-27T09:54:51.159Z", "type": "ContentfulC2PqfXuJwE8QSyKuM0U6W8M", }, - "node_locale": "de", "parent": "c2PqfXUJwE8qSYKuM0U6w8M", "price": 11, "productDescription___NODE": "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry___deproductDescriptionTextNode", @@ -4266,17 +4065,15 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "sizetypecolor": "3 x 3 x 5 inches; 5.3 ounces", "sku": "B00E82D7I8", "slug": "hudson-wall-cup", - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "2PqfXUJwE8qSYKuM0U6w8M", - "id": "c2PqfXUJwE8qSYKuM0U6w8M", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "c2PqfXUJwE8qSYKuM0U6w8M", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.006Z", + "id": "c3DVqIYj4dOwwcKu6sgqOgg", + "locale": "de", + "publishedAt": "2017-06-27T09:54:51.159Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "tags": Array [ @@ -4284,7 +4081,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "flowers", "accessories", ], - "updatedAt": "2017-06-27T09:54:51.159Z", "website": "http://www.amazon.com/dp/B00E82D7I8/", }, ], @@ -4294,12 +4090,7 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "categories___NODE": Array [ "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry___de", ], - "children": Array [ - "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry___deproductNameTextNode", - "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry___deproductDescriptionTextNode", - ], - "contentful_id": "c6dbjWqNd9SqccegcqYq224", - "createdAt": "2017-06-27T09:35:44.049Z", + "children": Array [], "id": "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry___de", "image___NODE": Array [ "rocybtov1ozk___c10TkaLheGeQG6qQGqWYqUI___Asset___de", @@ -4308,7 +4099,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "contentDigest": "2017-06-27T09:53:23.179Z", "type": "ContentfulC2PqfXuJwE8QSyKuM0U6W8M", }, - "node_locale": "de", "parent": "c2PqfXUJwE8qSYKuM0U6w8M", "price": 22, "productDescription___NODE": "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry___deproductDescriptionTextNode", @@ -4317,17 +4107,15 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "sizetypecolor": "0.8 x 0.8 x 11.2 inches; 1.6 ounces", "sku": "B0081F2CCK", "slug": "whisk-beater", - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "2PqfXUJwE8qSYKuM0U6w8M", - "id": "c2PqfXUJwE8qSYKuM0U6w8M", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "c2PqfXUJwE8qSYKuM0U6w8M", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.049Z", + "id": "c6dbjWqNd9SqccegcqYq224", + "locale": "de", + "publishedAt": "2017-06-27T09:53:23.179Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "tags": Array [ @@ -4337,7 +4125,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "scandinavia", "design", ], - "updatedAt": "2017-06-27T09:53:23.179Z", "website": "http://www.amazon.com/dp/B0081F2CCK/", }, ], @@ -4347,12 +4134,7 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "categories___NODE": Array [ "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry___de", ], - "children": Array [ - "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry___deproductNameTextNode", - "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry___deproductDescriptionTextNode", - ], - "contentful_id": "c4BqrajvA8E6qwgkieoqmqO", - "createdAt": "2017-06-27T09:35:44.130Z", + "children": Array [], "id": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry___de", "image___NODE": Array [ "rocybtov1ozk___KTRF62Q4gg60q6WCsWKw8___Asset___de", @@ -4361,7 +4143,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "contentDigest": "2017-06-27T09:52:29.215Z", "type": "ContentfulC2PqfXuJwE8QSyKuM0U6W8M", }, - "node_locale": "de", "parent": "c2PqfXUJwE8qSYKuM0U6w8M", "price": 120, "productDescription___NODE": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry___deproductDescriptionTextNode", @@ -4370,17 +4151,15 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "sizetypecolor": "10\\" x 2.2\\"", "sku": "B00MG4ULK2", "slug": "soso-wall-clock", - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "2PqfXUJwE8qSYKuM0U6w8M", - "id": "c2PqfXUJwE8qSYKuM0U6w8M", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "c2PqfXUJwE8qSYKuM0U6w8M", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.130Z", + "id": "c4BqrajvA8E6qwgkieoqmqO", + "locale": "de", + "publishedAt": "2017-06-27T09:52:29.215Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "tags": Array [ @@ -4390,149 +4169,115 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "yellow", "gifts", ], - "updatedAt": "2017-06-27T09:52:29.215Z", "website": "http://store.dwell.com/soso-wall-clock.html", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry___deproductNameTextNode", "internal": Object { "content": "Playsam Streamliner Klassisches Auto, Espresso", "contentDigest": "2017-06-27T09:56:59.626Z", "mediaType": "text/markdown", - "type": "contentfulC2PqfXuJwE8QSyKuM0U6W8MProductNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry___de", - "productName": "Playsam Streamliner Klassisches Auto, Espresso", - "sys": Object { - "type": "Entry", - }, + "raw": "Playsam Streamliner Klassisches Auto, Espresso", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry___deproductDescriptionTextNode", "internal": Object { "content": "Ein klassisches Playsam-Design, das Streamliner Classic Car wurde als Swedish Design Classic vom Schwedischen Nationalmuseum für seinen erfinderischen Stil und seine schlanke Oberfläche ausgewählt. Es ist kein Wunder, dass dieses hölzerne Auto auch ein langjähriger Liebling für Kinder gewesen ist, die groß und klein sind!", "contentDigest": "2017-06-27T09:56:59.626Z", "mediaType": "text/markdown", - "type": "contentfulC2PqfXuJwE8QSyKuM0U6W8MProductDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry___de", - "productDescription": "Ein klassisches Playsam-Design, das Streamliner Classic Car wurde als Swedish Design Classic vom Schwedischen Nationalmuseum für seinen erfinderischen Stil und seine schlanke Oberfläche ausgewählt. Es ist kein Wunder, dass dieses hölzerne Auto auch ein langjähriger Liebling für Kinder gewesen ist, die groß und klein sind!", - "sys": Object { - "type": "Entry", - }, + "raw": "Ein klassisches Playsam-Design, das Streamliner Classic Car wurde als Swedish Design Classic vom Schwedischen Nationalmuseum für seinen erfinderischen Stil und seine schlanke Oberfläche ausgewählt. Es ist kein Wunder, dass dieses hölzerne Auto auch ein langjähriger Liebling für Kinder gewesen ist, die groß und klein sind!", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry___deproductNameTextNode", "internal": Object { "content": "Becher", "contentDigest": "2017-06-27T09:54:51.159Z", "mediaType": "text/markdown", - "type": "contentfulC2PqfXuJwE8QSyKuM0U6W8MProductNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry___de", - "productName": "Becher", - "sys": Object { - "type": "Entry", - }, + "raw": "Becher", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry___deproductDescriptionTextNode", "internal": Object { "content": "Wand-hängende Glas-Blumen-Vase und Terrarium", "contentDigest": "2017-06-27T09:54:51.159Z", "mediaType": "text/markdown", - "type": "contentfulC2PqfXuJwE8QSyKuM0U6W8MProductDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry___de", - "productDescription": "Wand-hängende Glas-Blumen-Vase und Terrarium", - "sys": Object { - "type": "Entry", - }, + "raw": "Wand-hängende Glas-Blumen-Vase und Terrarium", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry___deproductNameTextNode", "internal": Object { "content": "Schneebesen", "contentDigest": "2017-06-27T09:53:23.179Z", "mediaType": "text/markdown", - "type": "contentfulC2PqfXuJwE8QSyKuM0U6W8MProductNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry___de", - "productName": "Schneebesen", - "sys": Object { - "type": "Entry", - }, + "raw": "Schneebesen", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry___deproductDescriptionTextNode", "internal": Object { "content": "Ein kreativer kleiner Schneebesen, der in 8 verschiedenen Farben kommt. Praktisch und nach dem Gebrauch leicht zu reinigen. Eine tolle Geschenkidee.", "contentDigest": "2017-06-27T09:53:23.179Z", "mediaType": "text/markdown", - "type": "contentfulC2PqfXuJwE8QSyKuM0U6W8MProductDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry___de", - "productDescription": "Ein kreativer kleiner Schneebesen, der in 8 verschiedenen Farben kommt. Praktisch und nach dem Gebrauch leicht zu reinigen. Eine tolle Geschenkidee.", - "sys": Object { - "type": "Entry", - }, + "raw": "Ein kreativer kleiner Schneebesen, der in 8 verschiedenen Farben kommt. Praktisch und nach dem Gebrauch leicht zu reinigen. Eine tolle Geschenkidee.", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry___deproductNameTextNode", "internal": Object { "content": "SoSo wanduhr", "contentDigest": "2017-06-27T09:52:29.215Z", "mediaType": "text/markdown", - "type": "contentfulC2PqfXuJwE8QSyKuM0U6W8MProductNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry___de", - "productName": "SoSo wanduhr", - "sys": Object { - "type": "Entry", - }, + "raw": "SoSo wanduhr", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry___deproductDescriptionTextNode", "internal": Object { "content": "Die neu veröffentlichte SoSo Clock von Lemnos heiratet einfaches, sauberes Design und fette, auffällige Features. Sein gesättigtes Ringelblumengesicht ist ein lebhafter Pop der Farbe zu den weißen oder grauen Wänden, aber würde auch gut mit Marine und kastanienbraun paaren. Wo die meisten Uhren am Rande der Uhr Nummern sind, bringt der SoSo sie in die Mitte und lässt einen weiten Raum zwischen den Zahlen und dem leichten Rahmen. Der Stundenzeiger bietet eine schöne Unterbrechung der schwarzen und gelben der Uhr - es ist in einem brillanten Weiß vorgestellt. Trotz seiner kräftigen Farbe und des Kontrastes behält der SoSo eine saubere, reine Ästhetik, die für eine Vielzahl von zeitgenössischen Interieurs geeignet ist.", "contentDigest": "2017-06-27T09:52:29.215Z", "mediaType": "text/markdown", - "type": "contentfulC2PqfXuJwE8QSyKuM0U6W8MProductDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry___de", - "productDescription": "Die neu veröffentlichte SoSo Clock von Lemnos heiratet einfaches, sauberes Design und fette, auffällige Features. Sein gesättigtes Ringelblumengesicht ist ein lebhafter Pop der Farbe zu den weißen oder grauen Wänden, aber würde auch gut mit Marine und kastanienbraun paaren. Wo die meisten Uhren am Rande der Uhr Nummern sind, bringt der SoSo sie in die Mitte und lässt einen weiten Raum zwischen den Zahlen und dem leichten Rahmen. Der Stundenzeiger bietet eine schöne Unterbrechung der schwarzen und gelben der Uhr - es ist in einem brillanten Weiß vorgestellt. Trotz seiner kräftigen Farbe und des Kontrastes behält der SoSo eine saubere, reine Ästhetik, die für eine Vielzahl von zeitgenössischen Interieurs geeignet ist.", - "sys": Object { - "type": "Entry", - }, + "raw": "Die neu veröffentlichte SoSo Clock von Lemnos heiratet einfaches, sauberes Design und fette, auffällige Features. Sein gesättigtes Ringelblumengesicht ist ein lebhafter Pop der Farbe zu den weißen oder grauen Wänden, aber würde auch gut mit Marine und kastanienbraun paaren. Wo die meisten Uhren am Rande der Uhr Nummern sind, bringt der SoSo sie in die Mitte und lässt einen weiten Raum zwischen den Zahlen und dem leichten Rahmen. Der Stundenzeiger bietet eine schöne Unterbrechung der schwarzen und gelben der Uhr - es ist in einem brillanten Weiß vorgestellt. Trotz seiner kräftigen Farbe und des Kontrastes behält der SoSo eine saubere, reine Ästhetik, die für eine Vielzahl von zeitgenössischen Interieurs geeignet ist.", }, ], Array [ Object { - "children": Array [], "description": "just for testing JSON fields", "displayField": null, "id": "jsonTest", @@ -4541,362 +4286,289 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "type": "ContentfulContentType", }, "name": "JSON-test", - "parent": null, "sys": Object { + "environmentId": "master", + "firstPublishedAt": "2017-11-28T02:15:46.221Z", + "id": "jsonTest", + "locale": "en-US", + "publishedAt": "2018-08-13T14:21:13.985Z", + "publishedVersion": 3, + "spaceId": "rocybtov1ozk", "type": "ContentType", }, }, ], Array [ Object { - "children": Array [ - "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___EntryjsonTestJSONNode", - "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___EntryjsonStringTest0JSONNode", - ], - "contentful_id": "c71mfnH4QKsSsQmgoaQuq6O", - "createdAt": "2017-11-28T02:16:10.604Z", + "children": Array [], "id": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry", "internal": Object { "contentDigest": "2018-08-13T14:27:12.458Z", "type": "ContentfulJsonTest", }, - "jsonStringTest___NODE": Array [ - "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___EntryjsonStringTest0JSONNode", - ], - "jsonTest___NODE": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___EntryjsonTestJSONNode", - "node_locale": "en-US", + "jsonStringTest": Array [ + "test", + ], + "jsonTest": Object { + "devDependencies": Object { + "babel-cli": "^6.26.0", + "babel-eslint": "^7.2.3", + "babel-jest": "^20.0.3", + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-lodash": "^3.2.11", + "babel-plugin-transform-async-to-generator": "^6.24.1", + "babel-plugin-transform-flow-strip-types": "^6.22.0", + "babel-plugin-transform-runtime": "^6.23.0", + "babel-preset-env": "^1.6.0", + "babel-preset-flow": "^6.23.0", + "babel-preset-react": "^6.24.1", + "babel-preset-stage-0": "^6.24.1", + "babel-register": "^6.26.0", + "babel-runtime": "^6.26.0", + "chokidar": "^1.7.0", + "cross-env": "^5.0.5", + "eslint": "^4.5.0", + "eslint-config-google": "^0.9.1", + "eslint-config-prettier": "^2.5.0", + "eslint-plugin-flow-vars": "^0.5.0", + "eslint-plugin-flowtype": "^2.35.0", + "eslint-plugin-import": "^2.7.0", + "eslint-plugin-jsx-a11y": "^6.0.2", + "eslint-plugin-prettier": "^2.2.0", + "eslint-plugin-react": "^7.3.0", + "flow-bin": "^0.42.0", + "glob": "^7.1.1", + "jest": "^20.0.4", + "jest-cli": "^20.0.4", + "lerna": "^2.1.1", + "plop": "^1.8.1", + "prettier": "^1.7.0", + "prettier-eslint-cli": "4.2.x", + "remotedev-server": "^0.2.3", + "rimraf": "^2.6.1", + }, + "engines": Object { + "yarn": "^1.2.1", + }, + "eslintIgnore": Array [ + "interfaces", + "**/__tests__/fixtures/", + ], + "private": true, + "scripts": Object { + "bootstrap": "yarn && npm run check-versions && lerna run prepublish", + "check-versions": "babel-node scripts/check-versions.js", + "format": "npm run format-packages && npm run format-cache-dir && npm run format-www && npm run format-examples && npm run format-scripts", + "format-cache-dir": "prettier-eslint --write \\"packages/gatsby/cache-dir/*.js\\"", + "format-examples": "prettier-eslint --write \\"examples/**/gatsby-node.js\\" \\"examples/**/gatsby-config.js\\" \\"examples/**/src/**/*.js\\"", + "format-packages": "prettier-eslint --write \\"packages/*/src/**/*.js\\"", + "format-scripts": "prettier-eslint --write \\"scripts/**/*.js\\"", + "format-www": "prettier-eslint --write \\"www/*.js\\" \\"www/src/**/*.js\\"", + "jest": "jest", + "lerna": "lerna", + "lint": "eslint --ext .js,.jsx packages/**/src", + "lint:flow": "babel-node scripts/flow-check.js", + "plop": "plop", + "publish": "lerna publish", + "publish-canary": "lerna publish --canary --yes", + "publish-next": "lerna publish --npm-tag=next", + "remotedev": "remotedev --hostname=localhost --port=19999", + "test": "yarn lint && yarn jest", + "test:update": "jest --updateSnapshot", + "test:watch": "jest --watch", + "test_bkup": "npm run lint && npm run test-node && npm run test-integration", + "watch": "lerna run watch --no-sort --stream --concurrency 999", + }, + "workspaces": Array [ + "packages/*", + ], + }, "parent": "jsonTest", - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "jsonTest", - "id": "jsonTest", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 4, + "contentType___NODE": "jsonTest", + "environmentId": "master", + "firstPublishedAt": "2017-11-28T02:16:10.604Z", + "id": "c71mfnH4QKsSsQmgoaQuq6O", + "locale": "en-US", + "publishedAt": "2018-08-13T14:27:12.458Z", + "publishedVersion": 4, + "spaceId": "rocybtov1ozk", "type": "Entry", }, - "updatedAt": "2018-08-13T14:27:12.458Z", - }, - ], - Array [ - Object { - "children": Array [], - "devDependencies": Object { - "babel-cli": "^6.26.0", - "babel-eslint": "^7.2.3", - "babel-jest": "^20.0.3", - "babel-plugin-add-module-exports": "^0.2.1", - "babel-plugin-lodash": "^3.2.11", - "babel-plugin-transform-async-to-generator": "^6.24.1", - "babel-plugin-transform-flow-strip-types": "^6.22.0", - "babel-plugin-transform-runtime": "^6.23.0", - "babel-preset-env": "^1.6.0", - "babel-preset-flow": "^6.23.0", - "babel-preset-react": "^6.24.1", - "babel-preset-stage-0": "^6.24.1", - "babel-register": "^6.26.0", - "babel-runtime": "^6.26.0", - "chokidar": "^1.7.0", - "cross-env": "^5.0.5", - "eslint": "^4.5.0", - "eslint-config-google": "^0.9.1", - "eslint-config-prettier": "^2.5.0", - "eslint-plugin-flow-vars": "^0.5.0", - "eslint-plugin-flowtype": "^2.35.0", - "eslint-plugin-import": "^2.7.0", - "eslint-plugin-jsx-a11y": "^6.0.2", - "eslint-plugin-prettier": "^2.2.0", - "eslint-plugin-react": "^7.3.0", - "flow-bin": "^0.42.0", - "glob": "^7.1.1", - "jest": "^20.0.4", - "jest-cli": "^20.0.4", - "lerna": "^2.1.1", - "plop": "^1.8.1", - "prettier": "^1.7.0", - "prettier-eslint-cli": "4.2.x", - "remotedev-server": "^0.2.3", - "rimraf": "^2.6.1", - }, - "engines": Object { - "yarn": "^1.2.1", - }, - "eslintIgnore": Array [ - "interfaces", - "**/__tests__/fixtures/", - ], - "id": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___EntryjsonTestJSONNode", - "internal": Object { - "content": "{\\"engines\\":{\\"yarn\\":\\"^1.2.1\\"},\\"private\\":true,\\"scripts\\":{\\"jest\\":\\"jest\\",\\"lint\\":\\"eslint --ext .js,.jsx packages/**/src\\",\\"plop\\":\\"plop\\",\\"test\\":\\"yarn lint && yarn jest\\",\\"lerna\\":\\"lerna\\",\\"watch\\":\\"lerna run watch --no-sort --stream --concurrency 999\\",\\"format\\":\\"npm run format-packages && npm run format-cache-dir && npm run format-www && npm run format-examples && npm run format-scripts\\",\\"publish\\":\\"lerna publish\\",\\"bootstrap\\":\\"yarn && npm run check-versions && lerna run prepublish\\",\\"lint:flow\\":\\"babel-node scripts/flow-check.js\\",\\"remotedev\\":\\"remotedev --hostname=localhost --port=19999\\",\\"test_bkup\\":\\"npm run lint && npm run test-node && npm run test-integration\\",\\"format-www\\":\\"prettier-eslint --write /\\"www/*.js/\\" /\\"www/src/**/*.js/\\"\\",\\"test:watch\\":\\"jest --watch\\",\\"test:update\\":\\"jest --updateSnapshot\\",\\"publish-next\\":\\"lerna publish --npm-tag=next\\",\\"check-versions\\":\\"babel-node scripts/check-versions.js\\",\\"format-scripts\\":\\"prettier-eslint --write /\\"scripts/**/*.js/\\"\\",\\"publish-canary\\":\\"lerna publish --canary --yes\\",\\"format-examples\\":\\"prettier-eslint --write /\\"examples/**/gatsby-node.js/\\" /\\"examples/**/gatsby-config.js/\\" /\\"examples/**/src/**/*.js/\\"\\",\\"format-packages\\":\\"prettier-eslint --write /\\"packages/*/src/**/*.js/\\"\\",\\"format-cache-dir\\":\\"prettier-eslint --write /\\"packages/gatsby/cache-dir/*.js/\\"\\"},\\"workspaces\\":[\\"packages/*\\"],\\"eslintIgnore\\":[\\"interfaces\\",\\"**/__tests__/fixtures/\\"],\\"devDependencies\\":{\\"glob\\":\\"^7.1.1\\",\\"jest\\":\\"^20.0.4\\",\\"plop\\":\\"^1.8.1\\",\\"lerna\\":\\"^2.1.1\\",\\"eslint\\":\\"^4.5.0\\",\\"rimraf\\":\\"^2.6.1\\",\\"chokidar\\":\\"^1.7.0\\",\\"flow-bin\\":\\"^0.42.0\\",\\"jest-cli\\":\\"^20.0.4\\",\\"prettier\\":\\"^1.7.0\\",\\"babel-cli\\":\\"^6.26.0\\",\\"cross-env\\":\\"^5.0.5\\",\\"babel-jest\\":\\"^20.0.3\\",\\"babel-eslint\\":\\"^7.2.3\\",\\"babel-runtime\\":\\"^6.26.0\\",\\"babel-register\\":\\"^6.26.0\\",\\"babel-preset-env\\":\\"^1.6.0\\",\\"remotedev-server\\":\\"^0.2.3\\",\\"babel-preset-flow\\":\\"^6.23.0\\",\\"babel-preset-react\\":\\"^6.24.1\\",\\"babel-plugin-lodash\\":\\"^3.2.11\\",\\"eslint-plugin-react\\":\\"^7.3.0\\",\\"prettier-eslint-cli\\":\\"4.2.x\\",\\"babel-preset-stage-0\\":\\"^6.24.1\\",\\"eslint-config-google\\":\\"^0.9.1\\",\\"eslint-plugin-import\\":\\"^2.7.0\\",\\"eslint-config-prettier\\":\\"^2.5.0\\",\\"eslint-plugin-flowtype\\":\\"^2.35.0\\",\\"eslint-plugin-jsx-a11y\\":\\"^6.0.2\\",\\"eslint-plugin-prettier\\":\\"^2.2.0\\",\\"eslint-plugin-flow-vars\\":\\"^0.5.0\\",\\"babel-plugin-transform-runtime\\":\\"^6.23.0\\",\\"babel-plugin-add-module-exports\\":\\"^0.2.1\\",\\"babel-plugin-transform-flow-strip-types\\":\\"^6.22.0\\",\\"babel-plugin-transform-async-to-generator\\":\\"^6.24.1\\"}}", - "contentDigest": "2018-08-13T14:27:12.458Z", - "mediaType": "application/json", - "type": "contentfulJsonTestJsonTestJsonNode", - }, - "parent": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry", - "private": true, - "scripts": Object { - "bootstrap": "yarn && npm run check-versions && lerna run prepublish", - "check-versions": "babel-node scripts/check-versions.js", - "format": "npm run format-packages && npm run format-cache-dir && npm run format-www && npm run format-examples && npm run format-scripts", - "format-cache-dir": "prettier-eslint --write \\"packages/gatsby/cache-dir/*.js\\"", - "format-examples": "prettier-eslint --write \\"examples/**/gatsby-node.js\\" \\"examples/**/gatsby-config.js\\" \\"examples/**/src/**/*.js\\"", - "format-packages": "prettier-eslint --write \\"packages/*/src/**/*.js\\"", - "format-scripts": "prettier-eslint --write \\"scripts/**/*.js\\"", - "format-www": "prettier-eslint --write \\"www/*.js\\" \\"www/src/**/*.js\\"", - "jest": "jest", - "lerna": "lerna", - "lint": "eslint --ext .js,.jsx packages/**/src", - "lint:flow": "babel-node scripts/flow-check.js", - "plop": "plop", - "publish": "lerna publish", - "publish-canary": "lerna publish --canary --yes", - "publish-next": "lerna publish --npm-tag=next", - "remotedev": "remotedev --hostname=localhost --port=19999", - "test": "yarn lint && yarn jest", - "test:update": "jest --updateSnapshot", - "test:watch": "jest --watch", - "test_bkup": "npm run lint && npm run test-node && npm run test-integration", - "watch": "lerna run watch --no-sort --stream --concurrency 999", + }, + ], + Array [ + Object { + "description": "just for testing JSON fields", + "displayField": null, + "id": "jsonTest", + "internal": Object { + "contentDigest": "2018-08-13T14:21:13.985Z", + "type": "ContentfulContentType", }, + "name": "JSON-test", "sys": Object { - "type": "Entry", + "environmentId": "master", + "firstPublishedAt": "2017-11-28T02:15:46.221Z", + "id": "jsonTest", + "locale": "de", + "publishedAt": "2018-08-13T14:21:13.985Z", + "publishedVersion": 3, + "spaceId": "rocybtov1ozk", + "type": "ContentType", }, - "workspaces": Array [ - "packages/*", - ], }, ], Array [ Object { "children": Array [], - "content": "test", - "id": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___EntryjsonStringTest0JSONNode", + "id": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry___de", "internal": Object { - "content": "\\"test\\"", "contentDigest": "2018-08-13T14:27:12.458Z", - "mediaType": "application/json", - "type": "contentfulJsonTestJsonStringTestJsonNode", + "type": "ContentfulJsonTest", + }, + "jsonStringTest": Array [ + "test", + ], + "jsonTest": Object { + "devDependencies": Object { + "babel-cli": "^6.26.0", + "babel-eslint": "^7.2.3", + "babel-jest": "^20.0.3", + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-lodash": "^3.2.11", + "babel-plugin-transform-async-to-generator": "^6.24.1", + "babel-plugin-transform-flow-strip-types": "^6.22.0", + "babel-plugin-transform-runtime": "^6.23.0", + "babel-preset-env": "^1.6.0", + "babel-preset-flow": "^6.23.0", + "babel-preset-react": "^6.24.1", + "babel-preset-stage-0": "^6.24.1", + "babel-register": "^6.26.0", + "babel-runtime": "^6.26.0", + "chokidar": "^1.7.0", + "cross-env": "^5.0.5", + "eslint": "^4.5.0", + "eslint-config-google": "^0.9.1", + "eslint-config-prettier": "^2.5.0", + "eslint-plugin-flow-vars": "^0.5.0", + "eslint-plugin-flowtype": "^2.35.0", + "eslint-plugin-import": "^2.7.0", + "eslint-plugin-jsx-a11y": "^6.0.2", + "eslint-plugin-prettier": "^2.2.0", + "eslint-plugin-react": "^7.3.0", + "flow-bin": "^0.42.0", + "glob": "^7.1.1", + "jest": "^20.0.4", + "jest-cli": "^20.0.4", + "lerna": "^2.1.1", + "plop": "^1.8.1", + "prettier": "^1.7.0", + "prettier-eslint-cli": "4.2.x", + "remotedev-server": "^0.2.3", + "rimraf": "^2.6.1", + }, + "engines": Object { + "yarn": "^1.2.1", + }, + "eslintIgnore": Array [ + "interfaces", + "**/__tests__/fixtures/", + ], + "private": true, + "scripts": Object { + "bootstrap": "yarn && npm run check-versions && lerna run prepublish", + "check-versions": "babel-node scripts/check-versions.js", + "format": "npm run format-packages && npm run format-cache-dir && npm run format-www && npm run format-examples && npm run format-scripts", + "format-cache-dir": "prettier-eslint --write \\"packages/gatsby/cache-dir/*.js\\"", + "format-examples": "prettier-eslint --write \\"examples/**/gatsby-node.js\\" \\"examples/**/gatsby-config.js\\" \\"examples/**/src/**/*.js\\"", + "format-packages": "prettier-eslint --write \\"packages/*/src/**/*.js\\"", + "format-scripts": "prettier-eslint --write \\"scripts/**/*.js\\"", + "format-www": "prettier-eslint --write \\"www/*.js\\" \\"www/src/**/*.js\\"", + "jest": "jest", + "lerna": "lerna", + "lint": "eslint --ext .js,.jsx packages/**/src", + "lint:flow": "babel-node scripts/flow-check.js", + "plop": "plop", + "publish": "lerna publish", + "publish-canary": "lerna publish --canary --yes", + "publish-next": "lerna publish --npm-tag=next", + "remotedev": "remotedev --hostname=localhost --port=19999", + "test": "yarn lint && yarn jest", + "test:update": "jest --updateSnapshot", + "test:watch": "jest --watch", + "test_bkup": "npm run lint && npm run test-node && npm run test-integration", + "watch": "lerna run watch --no-sort --stream --concurrency 999", + }, + "workspaces": Array [ + "packages/*", + ], }, - "parent": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry", + "parent": "jsonTest", "sys": Object { + "contentType___NODE": "jsonTest", + "environmentId": "master", + "firstPublishedAt": "2017-11-28T02:16:10.604Z", + "id": "c71mfnH4QKsSsQmgoaQuq6O", + "locale": "de", + "publishedAt": "2018-08-13T14:27:12.458Z", + "publishedVersion": 4, + "spaceId": "rocybtov1ozk", "type": "Entry", }, }, ], Array [ Object { - "children": Array [], - "description": "just for testing JSON fields", - "displayField": null, - "id": "jsonTest", + "description": "", + "displayField": "title", + "id": "remarkTest", "internal": Object { - "contentDigest": "2018-08-13T14:21:13.985Z", + "contentDigest": "2018-05-28T08:43:09.218Z", "type": "ContentfulContentType", }, - "name": "JSON-test", - "parent": null, + "name": "Remark Test", "sys": Object { + "environmentId": "master", + "firstPublishedAt": "2018-05-28T08:43:09.218Z", + "id": "remarkTest", + "locale": "en-US", + "publishedAt": "2018-05-28T08:43:09.218Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "ContentType", }, }, ], - Array [ - Object { - "children": Array [ - "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry___dejsonTestJSONNode", - "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry___dejsonStringTest0JSONNode", - ], - "contentful_id": "c71mfnH4QKsSsQmgoaQuq6O", - "createdAt": "2017-11-28T02:16:10.604Z", - "id": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry___de", - "internal": Object { - "contentDigest": "2018-08-13T14:27:12.458Z", - "type": "ContentfulJsonTest", - }, - "jsonStringTest___NODE": Array [ - "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry___dejsonStringTest0JSONNode", - ], - "jsonTest___NODE": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry___dejsonTestJSONNode", - "node_locale": "de", - "parent": "jsonTest", - "spaceId": "rocybtov1ozk", - "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "jsonTest", - "id": "jsonTest", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 4, - "type": "Entry", - }, - "updatedAt": "2018-08-13T14:27:12.458Z", - }, - ], - Array [ - Object { - "children": Array [], - "devDependencies": Object { - "babel-cli": "^6.26.0", - "babel-eslint": "^7.2.3", - "babel-jest": "^20.0.3", - "babel-plugin-add-module-exports": "^0.2.1", - "babel-plugin-lodash": "^3.2.11", - "babel-plugin-transform-async-to-generator": "^6.24.1", - "babel-plugin-transform-flow-strip-types": "^6.22.0", - "babel-plugin-transform-runtime": "^6.23.0", - "babel-preset-env": "^1.6.0", - "babel-preset-flow": "^6.23.0", - "babel-preset-react": "^6.24.1", - "babel-preset-stage-0": "^6.24.1", - "babel-register": "^6.26.0", - "babel-runtime": "^6.26.0", - "chokidar": "^1.7.0", - "cross-env": "^5.0.5", - "eslint": "^4.5.0", - "eslint-config-google": "^0.9.1", - "eslint-config-prettier": "^2.5.0", - "eslint-plugin-flow-vars": "^0.5.0", - "eslint-plugin-flowtype": "^2.35.0", - "eslint-plugin-import": "^2.7.0", - "eslint-plugin-jsx-a11y": "^6.0.2", - "eslint-plugin-prettier": "^2.2.0", - "eslint-plugin-react": "^7.3.0", - "flow-bin": "^0.42.0", - "glob": "^7.1.1", - "jest": "^20.0.4", - "jest-cli": "^20.0.4", - "lerna": "^2.1.1", - "plop": "^1.8.1", - "prettier": "^1.7.0", - "prettier-eslint-cli": "4.2.x", - "remotedev-server": "^0.2.3", - "rimraf": "^2.6.1", - }, - "engines": Object { - "yarn": "^1.2.1", - }, - "eslintIgnore": Array [ - "interfaces", - "**/__tests__/fixtures/", - ], - "id": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry___dejsonTestJSONNode", - "internal": Object { - "content": "{\\"engines\\":{\\"yarn\\":\\"^1.2.1\\"},\\"private\\":true,\\"scripts\\":{\\"jest\\":\\"jest\\",\\"lint\\":\\"eslint --ext .js,.jsx packages/**/src\\",\\"plop\\":\\"plop\\",\\"test\\":\\"yarn lint && yarn jest\\",\\"lerna\\":\\"lerna\\",\\"watch\\":\\"lerna run watch --no-sort --stream --concurrency 999\\",\\"format\\":\\"npm run format-packages && npm run format-cache-dir && npm run format-www && npm run format-examples && npm run format-scripts\\",\\"publish\\":\\"lerna publish\\",\\"bootstrap\\":\\"yarn && npm run check-versions && lerna run prepublish\\",\\"lint:flow\\":\\"babel-node scripts/flow-check.js\\",\\"remotedev\\":\\"remotedev --hostname=localhost --port=19999\\",\\"test_bkup\\":\\"npm run lint && npm run test-node && npm run test-integration\\",\\"format-www\\":\\"prettier-eslint --write /\\"www/*.js/\\" /\\"www/src/**/*.js/\\"\\",\\"test:watch\\":\\"jest --watch\\",\\"test:update\\":\\"jest --updateSnapshot\\",\\"publish-next\\":\\"lerna publish --npm-tag=next\\",\\"check-versions\\":\\"babel-node scripts/check-versions.js\\",\\"format-scripts\\":\\"prettier-eslint --write /\\"scripts/**/*.js/\\"\\",\\"publish-canary\\":\\"lerna publish --canary --yes\\",\\"format-examples\\":\\"prettier-eslint --write /\\"examples/**/gatsby-node.js/\\" /\\"examples/**/gatsby-config.js/\\" /\\"examples/**/src/**/*.js/\\"\\",\\"format-packages\\":\\"prettier-eslint --write /\\"packages/*/src/**/*.js/\\"\\",\\"format-cache-dir\\":\\"prettier-eslint --write /\\"packages/gatsby/cache-dir/*.js/\\"\\"},\\"workspaces\\":[\\"packages/*\\"],\\"eslintIgnore\\":[\\"interfaces\\",\\"**/__tests__/fixtures/\\"],\\"devDependencies\\":{\\"glob\\":\\"^7.1.1\\",\\"jest\\":\\"^20.0.4\\",\\"plop\\":\\"^1.8.1\\",\\"lerna\\":\\"^2.1.1\\",\\"eslint\\":\\"^4.5.0\\",\\"rimraf\\":\\"^2.6.1\\",\\"chokidar\\":\\"^1.7.0\\",\\"flow-bin\\":\\"^0.42.0\\",\\"jest-cli\\":\\"^20.0.4\\",\\"prettier\\":\\"^1.7.0\\",\\"babel-cli\\":\\"^6.26.0\\",\\"cross-env\\":\\"^5.0.5\\",\\"babel-jest\\":\\"^20.0.3\\",\\"babel-eslint\\":\\"^7.2.3\\",\\"babel-runtime\\":\\"^6.26.0\\",\\"babel-register\\":\\"^6.26.0\\",\\"babel-preset-env\\":\\"^1.6.0\\",\\"remotedev-server\\":\\"^0.2.3\\",\\"babel-preset-flow\\":\\"^6.23.0\\",\\"babel-preset-react\\":\\"^6.24.1\\",\\"babel-plugin-lodash\\":\\"^3.2.11\\",\\"eslint-plugin-react\\":\\"^7.3.0\\",\\"prettier-eslint-cli\\":\\"4.2.x\\",\\"babel-preset-stage-0\\":\\"^6.24.1\\",\\"eslint-config-google\\":\\"^0.9.1\\",\\"eslint-plugin-import\\":\\"^2.7.0\\",\\"eslint-config-prettier\\":\\"^2.5.0\\",\\"eslint-plugin-flowtype\\":\\"^2.35.0\\",\\"eslint-plugin-jsx-a11y\\":\\"^6.0.2\\",\\"eslint-plugin-prettier\\":\\"^2.2.0\\",\\"eslint-plugin-flow-vars\\":\\"^0.5.0\\",\\"babel-plugin-transform-runtime\\":\\"^6.23.0\\",\\"babel-plugin-add-module-exports\\":\\"^0.2.1\\",\\"babel-plugin-transform-flow-strip-types\\":\\"^6.22.0\\",\\"babel-plugin-transform-async-to-generator\\":\\"^6.24.1\\"}}", - "contentDigest": "2018-08-13T14:27:12.458Z", - "mediaType": "application/json", - "type": "contentfulJsonTestJsonTestJsonNode", - }, - "parent": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry___de", - "private": true, - "scripts": Object { - "bootstrap": "yarn && npm run check-versions && lerna run prepublish", - "check-versions": "babel-node scripts/check-versions.js", - "format": "npm run format-packages && npm run format-cache-dir && npm run format-www && npm run format-examples && npm run format-scripts", - "format-cache-dir": "prettier-eslint --write \\"packages/gatsby/cache-dir/*.js\\"", - "format-examples": "prettier-eslint --write \\"examples/**/gatsby-node.js\\" \\"examples/**/gatsby-config.js\\" \\"examples/**/src/**/*.js\\"", - "format-packages": "prettier-eslint --write \\"packages/*/src/**/*.js\\"", - "format-scripts": "prettier-eslint --write \\"scripts/**/*.js\\"", - "format-www": "prettier-eslint --write \\"www/*.js\\" \\"www/src/**/*.js\\"", - "jest": "jest", - "lerna": "lerna", - "lint": "eslint --ext .js,.jsx packages/**/src", - "lint:flow": "babel-node scripts/flow-check.js", - "plop": "plop", - "publish": "lerna publish", - "publish-canary": "lerna publish --canary --yes", - "publish-next": "lerna publish --npm-tag=next", - "remotedev": "remotedev --hostname=localhost --port=19999", - "test": "yarn lint && yarn jest", - "test:update": "jest --updateSnapshot", - "test:watch": "jest --watch", - "test_bkup": "npm run lint && npm run test-node && npm run test-integration", - "watch": "lerna run watch --no-sort --stream --concurrency 999", - }, - "sys": Object { - "type": "Entry", - }, - "workspaces": Array [ - "packages/*", - ], - }, - ], - Array [ - Object { - "children": Array [], - "content": "test", - "id": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry___dejsonStringTest0JSONNode", - "internal": Object { - "content": "\\"test\\"", - "contentDigest": "2018-08-13T14:27:12.458Z", - "mediaType": "application/json", - "type": "contentfulJsonTestJsonStringTestJsonNode", - }, - "parent": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry___de", - "sys": Object { - "type": "Entry", - }, - }, - ], Array [ Object { "children": Array [], - "description": "", - "displayField": "title", - "id": "remarkTest", - "internal": Object { - "contentDigest": "2018-05-28T08:43:09.218Z", - "type": "ContentfulContentType", - }, - "name": "Remark Test", - "parent": null, - "sys": Object { - "type": "ContentType", - }, - }, - ], - Array [ - Object { - "children": Array [ - "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___EntrycontentTextNode", - ], "content___NODE": "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___EntrycontentTextNode", - "contentful_id": "c4L2GhTsJtCseMYM8Wia64i", - "createdAt": "2018-05-28T08:49:06.230Z", "id": "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___Entry", "internal": Object { "contentDigest": "2018-05-28T08:49:06.230Z", "type": "ContentfulRemarkTest", }, - "node_locale": "en-US", "parent": "remarkTest", - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "remarkTest", - "id": "remarkTest", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 1, + "contentType___NODE": "remarkTest", + "environmentId": "master", + "firstPublishedAt": "2018-05-28T08:49:06.230Z", + "id": "c4L2GhTsJtCseMYM8Wia64i", + "locale": "en-US", + "publishedAt": "2018-05-28T08:49:06.230Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "title": "Contentful images inlined in Markdown", - "updatedAt": "2018-05-28T08:49:06.230Z", }, ], Array [ Object { - "children": Array [], - "content": "## Toys + "id": "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___EntrycontentTextNode", + "internal": Object { + "content": "## Toys ![Toys](//images.ctfassets.net/rocybtov1ozk/6t4HKjytPi0mYgs240wkG/6e730b1e6c2a46929239019240c037e6/toys_512pxGREY.png) @@ -4919,9 +4591,12 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff ## Hudson Wall Cup ![Hudson Wall Cup ](//images.ctfassets.net/rocybtov1ozk/Xc0ny7GWsMEMCeASWO2um/af8e29320c04af689798afe96e2345c7/jqvtazcyfwseah9fmysz.jpg)", - "id": "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___EntrycontentTextNode", - "internal": Object { - "content": "## Toys + "contentDigest": "2018-05-28T08:49:06.230Z", + "mediaType": "text/markdown", + "type": "ContentfulNodeTypeText", + }, + "parent": "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___Entry", + "raw": "## Toys ![Toys](//images.ctfassets.net/rocybtov1ozk/6t4HKjytPi0mYgs240wkG/6e730b1e6c2a46929239019240c037e6/toys_512pxGREY.png) @@ -4944,19 +4619,10 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff ## Hudson Wall Cup ![Hudson Wall Cup ](//images.ctfassets.net/rocybtov1ozk/Xc0ny7GWsMEMCeASWO2um/af8e29320c04af689798afe96e2345c7/jqvtazcyfwseah9fmysz.jpg)", - "contentDigest": "2018-05-28T08:49:06.230Z", - "mediaType": "text/markdown", - "type": "contentfulRemarkTestContentTextNode", - }, - "parent": "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___Entry", - "sys": Object { - "type": "Entry", - }, }, ], Array [ Object { - "children": Array [], "description": "", "displayField": "title", "id": "remarkTest", @@ -4965,48 +4631,47 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "type": "ContentfulContentType", }, "name": "Remark Test", - "parent": null, "sys": Object { + "environmentId": "master", + "firstPublishedAt": "2018-05-28T08:43:09.218Z", + "id": "remarkTest", + "locale": "de", + "publishedAt": "2018-05-28T08:43:09.218Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "ContentType", }, }, ], Array [ Object { - "children": Array [ - "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___Entry___decontentTextNode", - ], + "children": Array [], "content___NODE": "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___Entry___decontentTextNode", - "contentful_id": "c4L2GhTsJtCseMYM8Wia64i", - "createdAt": "2018-05-28T08:49:06.230Z", "id": "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___Entry___de", "internal": Object { "contentDigest": "2018-05-28T08:49:06.230Z", "type": "ContentfulRemarkTest", }, - "node_locale": "de", "parent": "remarkTest", - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "remarkTest", - "id": "remarkTest", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 1, + "contentType___NODE": "remarkTest", + "environmentId": "master", + "firstPublishedAt": "2018-05-28T08:49:06.230Z", + "id": "c4L2GhTsJtCseMYM8Wia64i", + "locale": "de", + "publishedAt": "2018-05-28T08:49:06.230Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "title": "Contentful images inlined in Markdown", - "updatedAt": "2018-05-28T08:49:06.230Z", }, ], Array [ Object { - "children": Array [], - "content": "## Toys + "id": "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___Entry___decontentTextNode", + "internal": Object { + "content": "## Toys ![Toys](//images.ctfassets.net/rocybtov1ozk/6t4HKjytPi0mYgs240wkG/6e730b1e6c2a46929239019240c037e6/toys_512pxGREY.png) @@ -5029,9 +4694,12 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff ## Hudson Wall Cup ![Hudson Wall Cup ](//images.ctfassets.net/rocybtov1ozk/Xc0ny7GWsMEMCeASWO2um/af8e29320c04af689798afe96e2345c7/jqvtazcyfwseah9fmysz.jpg)", - "id": "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___Entry___decontentTextNode", - "internal": Object { - "content": "## Toys + "contentDigest": "2018-05-28T08:49:06.230Z", + "mediaType": "text/markdown", + "type": "ContentfulNodeTypeText", + }, + "parent": "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___Entry___de", + "raw": "## Toys ![Toys](//images.ctfassets.net/rocybtov1ozk/6t4HKjytPi0mYgs240wkG/6e730b1e6c2a46929239019240c037e6/toys_512pxGREY.png) @@ -5054,14 +4722,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff ## Hudson Wall Cup ![Hudson Wall Cup ](//images.ctfassets.net/rocybtov1ozk/Xc0ny7GWsMEMCeASWO2um/af8e29320c04af689798afe96e2345c7/jqvtazcyfwseah9fmysz.jpg)", - "contentDigest": "2018-05-28T08:49:06.230Z", - "mediaType": "text/markdown", - "type": "contentfulRemarkTestContentTextNode", - }, - "parent": "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___Entry___de", - "sys": Object { - "type": "Entry", - }, }, ], ] @@ -7273,8 +6933,6 @@ Array [ Array [ Object { "children": Array [], - "contentful_id": "c3wtvPBbBjiMKqKKga8I2Cu", - "createdAt": "2017-06-27T09:35:37.178Z", "description": "Brand logo", "file": Object { "contentType": "image/jpeg", @@ -7293,22 +6951,23 @@ Array [ "contentDigest": "2017-06-27T09:35:37.178Z", "type": "ContentfulAsset", }, - "node_locale": "en-US", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:37.178Z", + "id": "c3wtvPBbBjiMKqKKga8I2Cu", + "locale": "en-US", + "publishedAt": "2017-06-27T09:35:37.178Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Normann Copenhagen", - "updatedAt": "2017-06-27T09:35:37.178Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c3wtvPBbBjiMKqKKga8I2Cu", - "createdAt": "2017-06-27T09:35:37.178Z", "description": "Brand logo", "file": Object { "contentType": "image/jpeg", @@ -7327,22 +6986,23 @@ Array [ "contentDigest": "2017-06-27T09:35:37.178Z", "type": "ContentfulAsset", }, - "node_locale": "de", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:37.178Z", + "id": "c3wtvPBbBjiMKqKKga8I2Cu", + "locale": "de", + "publishedAt": "2017-06-27T09:35:37.178Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Normann Copenhagen", - "updatedAt": "2017-06-27T09:35:37.178Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "KTRF62Q4gg60q6WCsWKw8", - "createdAt": "2017-06-27T09:35:37.064Z", "description": "by Lemnos", "file": Object { "contentType": "image/jpeg", @@ -7361,22 +7021,23 @@ Array [ "contentDigest": "2017-06-27T09:35:37.064Z", "type": "ContentfulAsset", }, - "node_locale": "en-US", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:37.064Z", + "id": "KTRF62Q4gg60q6WCsWKw8", + "locale": "en-US", + "publishedAt": "2017-06-27T09:35:37.064Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "SoSo Wall Clock", - "updatedAt": "2017-06-27T09:35:37.064Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "KTRF62Q4gg60q6WCsWKw8", - "createdAt": "2017-06-27T09:35:37.064Z", "description": "by Lemnos", "file": Object { "contentType": "image/jpeg", @@ -7395,22 +7056,23 @@ Array [ "contentDigest": "2017-06-27T09:35:37.064Z", "type": "ContentfulAsset", }, - "node_locale": "de", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:37.064Z", + "id": "KTRF62Q4gg60q6WCsWKw8", + "locale": "de", + "publishedAt": "2017-06-27T09:35:37.064Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "SoSo Wall Clock", - "updatedAt": "2017-06-27T09:35:37.064Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "Xc0ny7GWsMEMCeASWO2um", - "createdAt": "2017-06-27T09:35:37.027Z", "description": "Merchandise image", "file": Object { "contentType": "image/jpeg", @@ -7429,22 +7091,23 @@ Array [ "contentDigest": "2017-06-27T09:35:37.027Z", "type": "ContentfulAsset", }, - "node_locale": "en-US", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:37.027Z", + "id": "Xc0ny7GWsMEMCeASWO2um", + "locale": "en-US", + "publishedAt": "2017-06-27T09:35:37.027Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Hudson Wall Cup ", - "updatedAt": "2017-06-27T09:35:37.027Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "Xc0ny7GWsMEMCeASWO2um", - "createdAt": "2017-06-27T09:35:37.027Z", "description": "Merchandise image", "file": Object { "contentType": "image/jpeg", @@ -7463,22 +7126,23 @@ Array [ "contentDigest": "2017-06-27T09:35:37.027Z", "type": "ContentfulAsset", }, - "node_locale": "de", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:37.027Z", + "id": "Xc0ny7GWsMEMCeASWO2um", + "locale": "de", + "publishedAt": "2017-06-27T09:35:37.027Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Hudson Wall Cup ", - "updatedAt": "2017-06-27T09:35:37.027Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c2Y8LhXLnYAYqKCGEWG4EKI", - "createdAt": "2017-06-27T09:35:37.012Z", "description": "company logo", "file": Object { "contentType": "image/jpeg", @@ -7497,22 +7161,23 @@ Array [ "contentDigest": "2017-06-27T09:35:37.012Z", "type": "ContentfulAsset", }, - "node_locale": "en-US", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:37.012Z", + "id": "c2Y8LhXLnYAYqKCGEWG4EKI", + "locale": "en-US", + "publishedAt": "2017-06-27T09:35:37.012Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Lemnos", - "updatedAt": "2017-06-27T09:35:37.012Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c2Y8LhXLnYAYqKCGEWG4EKI", - "createdAt": "2017-06-27T09:35:37.012Z", "description": "company logo", "file": Object { "contentType": "image/jpeg", @@ -7531,22 +7196,23 @@ Array [ "contentDigest": "2017-06-27T09:35:37.012Z", "type": "ContentfulAsset", }, - "node_locale": "de", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:37.012Z", + "id": "c2Y8LhXLnYAYqKCGEWG4EKI", + "locale": "de", + "publishedAt": "2017-06-27T09:35:37.012Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Lemnos", - "updatedAt": "2017-06-27T09:35:37.012Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c6t4HKjytPi0mYgs240wkG", - "createdAt": "2017-06-27T09:35:36.633Z", "description": "Category icon set", "file": Object { "contentType": "image/png", @@ -7565,22 +7231,23 @@ Array [ "contentDigest": "2017-06-27T09:35:36.633Z", "type": "ContentfulAsset", }, - "node_locale": "en-US", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:36.633Z", + "id": "c6t4HKjytPi0mYgs240wkG", + "locale": "en-US", + "publishedAt": "2017-06-27T09:35:36.633Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Toys", - "updatedAt": "2017-06-27T09:35:36.633Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c6t4HKjytPi0mYgs240wkG", - "createdAt": "2017-06-27T09:35:36.633Z", "description": "Category icon set", "file": Object { "contentType": "image/png", @@ -7599,22 +7266,23 @@ Array [ "contentDigest": "2017-06-27T09:35:36.633Z", "type": "ContentfulAsset", }, - "node_locale": "de", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:36.633Z", + "id": "c6t4HKjytPi0mYgs240wkG", + "locale": "de", + "publishedAt": "2017-06-27T09:35:36.633Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Toys", - "updatedAt": "2017-06-27T09:35:36.633Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c1MgbdJNTsMWKI0W68oYqkU", - "createdAt": "2017-06-27T09:35:36.182Z", "description": "Brand logo", "file": Object { "contentType": "image/jpeg", @@ -7633,22 +7301,23 @@ Array [ "contentDigest": "2017-06-27T09:35:36.182Z", "type": "ContentfulAsset", }, - "node_locale": "en-US", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:36.182Z", + "id": "c1MgbdJNTsMWKI0W68oYqkU", + "locale": "en-US", + "publishedAt": "2017-06-27T09:35:36.182Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Chive logo", - "updatedAt": "2017-06-27T09:35:36.182Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c1MgbdJNTsMWKI0W68oYqkU", - "createdAt": "2017-06-27T09:35:36.182Z", "description": "Brand logo", "file": Object { "contentType": "image/jpeg", @@ -7667,22 +7336,23 @@ Array [ "contentDigest": "2017-06-27T09:35:36.182Z", "type": "ContentfulAsset", }, - "node_locale": "de", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:36.182Z", + "id": "c1MgbdJNTsMWKI0W68oYqkU", + "locale": "de", + "publishedAt": "2017-06-27T09:35:36.182Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Chive logo", - "updatedAt": "2017-06-27T09:35:36.182Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c6m5AJ9vMPKc8OUoQeoCS4o", - "createdAt": "2017-06-27T09:35:36.172Z", "description": "category icon", "file": Object { "contentType": "image/png", @@ -7701,22 +7371,23 @@ Array [ "contentDigest": "2017-06-27T09:35:36.172Z", "type": "ContentfulAsset", }, - "node_locale": "en-US", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:36.172Z", + "id": "c6m5AJ9vMPKc8OUoQeoCS4o", + "locale": "en-US", + "publishedAt": "2017-06-27T09:35:36.172Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Home and Kitchen", - "updatedAt": "2017-06-27T09:35:36.172Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c6m5AJ9vMPKc8OUoQeoCS4o", - "createdAt": "2017-06-27T09:35:36.172Z", "description": "category icon", "file": Object { "contentType": "image/png", @@ -7735,22 +7406,23 @@ Array [ "contentDigest": "2017-06-27T09:35:36.172Z", "type": "ContentfulAsset", }, - "node_locale": "de", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:36.172Z", + "id": "c6m5AJ9vMPKc8OUoQeoCS4o", + "locale": "de", + "publishedAt": "2017-06-27T09:35:36.172Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Home and Kitchen", - "updatedAt": "2017-06-27T09:35:36.172Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c4zj1ZOfHgQ8oqgaSKm4Qo2", - "createdAt": "2017-06-27T09:35:36.168Z", "description": "Brand logo", "file": Object { "contentType": "image/jpeg", @@ -7769,22 +7441,23 @@ Array [ "contentDigest": "2017-06-27T09:35:36.168Z", "type": "ContentfulAsset", }, - "node_locale": "en-US", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:36.168Z", + "id": "c4zj1ZOfHgQ8oqgaSKm4Qo2", + "locale": "en-US", + "publishedAt": "2017-06-27T09:35:36.168Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Playsam", - "updatedAt": "2017-06-27T09:35:36.168Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c4zj1ZOfHgQ8oqgaSKm4Qo2", - "createdAt": "2017-06-27T09:35:36.168Z", "description": "Brand logo", "file": Object { "contentType": "image/jpeg", @@ -7803,22 +7476,23 @@ Array [ "contentDigest": "2017-06-27T09:35:36.168Z", "type": "ContentfulAsset", }, - "node_locale": "de", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:36.168Z", + "id": "c4zj1ZOfHgQ8oqgaSKm4Qo2", + "locale": "de", + "publishedAt": "2017-06-27T09:35:36.168Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Playsam", - "updatedAt": "2017-06-27T09:35:36.168Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "wtrHxeu3zEoEce2MokCSi", - "createdAt": "2017-06-27T09:35:36.037Z", "description": "Merchandise photo", "file": Object { "contentType": "image/jpeg", @@ -7837,22 +7511,23 @@ Array [ "contentDigest": "2017-06-27T09:35:36.037Z", "type": "ContentfulAsset", }, - "node_locale": "en-US", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:36.037Z", + "id": "wtrHxeu3zEoEce2MokCSi", + "locale": "en-US", + "publishedAt": "2017-06-27T09:35:36.037Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Playsam Streamliner", - "updatedAt": "2017-06-27T09:35:36.037Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "wtrHxeu3zEoEce2MokCSi", - "createdAt": "2017-06-27T09:35:36.037Z", "description": "Merchandise photo", "file": Object { "contentType": "image/jpeg", @@ -7871,22 +7546,23 @@ Array [ "contentDigest": "2017-06-27T09:35:36.037Z", "type": "ContentfulAsset", }, - "node_locale": "de", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:36.037Z", + "id": "wtrHxeu3zEoEce2MokCSi", + "locale": "de", + "publishedAt": "2017-06-27T09:35:36.037Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Playsam Streamliner", - "updatedAt": "2017-06-27T09:35:36.037Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c10TkaLheGeQG6qQGqWYqUI", - "createdAt": "2017-06-27T09:35:36.032Z", "description": "Merchandise photo", "file": Object { "contentType": "image/jpeg", @@ -7905,22 +7581,23 @@ Array [ "contentDigest": "2017-06-27T09:35:36.032Z", "type": "ContentfulAsset", }, - "node_locale": "en-US", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:36.032Z", + "id": "c10TkaLheGeQG6qQGqWYqUI", + "locale": "en-US", + "publishedAt": "2017-06-27T09:35:36.032Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Whisk beaters", - "updatedAt": "2017-06-27T09:35:36.032Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c10TkaLheGeQG6qQGqWYqUI", - "createdAt": "2017-06-27T09:35:36.032Z", "description": "Merchandise photo", "file": Object { "contentType": "image/jpeg", @@ -7939,22 +7616,23 @@ Array [ "contentDigest": "2017-06-27T09:35:36.032Z", "type": "ContentfulAsset", }, - "node_locale": "de", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:36.032Z", + "id": "c10TkaLheGeQG6qQGqWYqUI", + "locale": "de", + "publishedAt": "2017-06-27T09:35:36.032Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Whisk beaters", - "updatedAt": "2017-06-27T09:35:36.032Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c6s3iG2OVmoUcosmA8ocqsG", - "createdAt": "2017-06-27T09:35:35.994Z", "description": "Category icon set", "file": Object { "contentType": "image/png", @@ -7973,22 +7651,23 @@ Array [ "contentDigest": "2017-06-27T09:35:35.994Z", "type": "ContentfulAsset", }, - "node_locale": "en-US", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:35.994Z", + "id": "c6s3iG2OVmoUcosmA8ocqsG", + "locale": "en-US", + "publishedAt": "2017-06-27T09:35:35.994Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "House icon", - "updatedAt": "2017-06-27T09:35:35.994Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c6s3iG2OVmoUcosmA8ocqsG", - "createdAt": "2017-06-27T09:35:35.994Z", "description": "Category icon set", "file": Object { "contentType": "image/png", @@ -8007,15 +7686,18 @@ Array [ "contentDigest": "2017-06-27T09:35:35.994Z", "type": "ContentfulAsset", }, - "node_locale": "de", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:35.994Z", + "id": "c6s3iG2OVmoUcosmA8ocqsG", + "locale": "de", + "publishedAt": "2017-06-27T09:35:35.994Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "House icon", - "updatedAt": "2017-06-27T09:35:35.994Z", }, ], ] @@ -8025,7 +7707,6 @@ exports[`Process contentful data (by name) creates nodes for each entry 1`] = ` Array [ Array [ Object { - "children": Array [], "description": null, "displayField": "title", "id": "Category", @@ -8034,8 +7715,14 @@ Array [ "type": "ContentfulContentType", }, "name": "Category", - "parent": null, "sys": Object { + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:31.492Z", + "id": "c6XwpTaSiiI2Ak2Ww0oi6qa", + "locale": "en-US", + "publishedAt": "2017-06-27T09:40:52.685Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "ContentType", }, }, @@ -8043,150 +7730,115 @@ Array [ Array [ Object { "categoryDescription___NODE": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___EntrycategoryDescriptionTextNode", - "children": Array [ - "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___EntrytitleTextNode", - "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___EntrycategoryDescriptionTextNode", - ], - "contentful_id": "c7LAnCobuuWYSqks6wAwY2a", - "createdAt": "2017-06-27T09:35:44.000Z", + "children": Array [], "icon___NODE": "rocybtov1ozk___c6m5AJ9vMPKc8OUoQeoCS4o___Asset", "id": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry", "internal": Object { "contentDigest": "2020-06-30T11:22:54.201Z", "type": "ContentfulCategory", }, - "node_locale": "en-US", "parent": "Category", "product___NODE": Array [ "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry", "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry", "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry", ], - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "6XwpTaSiiI2Ak2Ww0oi6qa", - "id": "c6XwpTaSiiI2Ak2Ww0oi6qa", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 4, + "contentType___NODE": "Category", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.000Z", + "id": "c7LAnCobuuWYSqks6wAwY2a", + "locale": "en-US", + "publishedAt": "2020-06-30T11:22:54.201Z", + "publishedVersion": 4, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "title___NODE": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___EntrytitleTextNode", - "updatedAt": "2020-06-30T11:22:54.201Z", }, ], Array [ Object { "categoryDescription___NODE": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___EntrycategoryDescriptionTextNode", - "children": Array [ - "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___EntrytitleTextNode", - "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___EntrycategoryDescriptionTextNode", - ], - "contentful_id": "c24DPGBDeGEaYy8ms4Y8QMQ", - "createdAt": "2017-06-27T09:35:44.992Z", + "children": Array [], "icon___NODE": "rocybtov1ozk___c6t4HKjytPi0mYgs240wkG___Asset", "id": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry", "internal": Object { "contentDigest": "2017-06-27T09:46:43.477Z", "type": "ContentfulCategory", }, - "node_locale": "en-US", "parent": "Category", "product___NODE": Array [ "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry", ], - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "6XwpTaSiiI2Ak2Ww0oi6qa", - "id": "c6XwpTaSiiI2Ak2Ww0oi6qa", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Category", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.992Z", + "id": "c24DPGBDeGEaYy8ms4Y8QMQ", + "locale": "en-US", + "publishedAt": "2017-06-27T09:46:43.477Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "title___NODE": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___EntrytitleTextNode", - "updatedAt": "2017-06-27T09:46:43.477Z", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___EntrytitleTextNode", "internal": Object { "content": "Home & Kitchen", "contentDigest": "2020-06-30T11:22:54.201Z", "mediaType": "text/markdown", - "type": "contentfulCategoryTitleTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry", - "sys": Object { - "type": "Entry", - }, - "title": "Home & Kitchen", + "raw": "Home & Kitchen", }, ], Array [ Object { - "categoryDescription": "Shop for furniture, bedding, bath, vacuums, kitchen products, and more", - "children": Array [], "id": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___EntrycategoryDescriptionTextNode", "internal": Object { "content": "Shop for furniture, bedding, bath, vacuums, kitchen products, and more", "contentDigest": "2020-06-30T11:22:54.201Z", "mediaType": "text/markdown", - "type": "contentfulCategoryCategoryDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry", - "sys": Object { - "type": "Entry", - }, + "raw": "Shop for furniture, bedding, bath, vacuums, kitchen products, and more", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___EntrytitleTextNode", "internal": Object { "content": "Toys", "contentDigest": "2017-06-27T09:46:43.477Z", "mediaType": "text/markdown", - "type": "contentfulCategoryTitleTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry", - "sys": Object { - "type": "Entry", - }, - "title": "Toys", + "raw": "Toys", }, ], Array [ Object { - "categoryDescription": "Shop for toys, games, educational aids", - "children": Array [], "id": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___EntrycategoryDescriptionTextNode", "internal": Object { "content": "Shop for toys, games, educational aids", "contentDigest": "2017-06-27T09:46:43.477Z", "mediaType": "text/markdown", - "type": "contentfulCategoryCategoryDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry", - "sys": Object { - "type": "Entry", - }, + "raw": "Shop for toys, games, educational aids", }, ], Array [ Object { - "children": Array [], "description": null, "displayField": "title", "id": "Category", @@ -8195,8 +7847,14 @@ Array [ "type": "ContentfulContentType", }, "name": "Category", - "parent": null, "sys": Object { + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:31.492Z", + "id": "c6XwpTaSiiI2Ak2Ww0oi6qa", + "locale": "de", + "publishedAt": "2017-06-27T09:40:52.685Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "ContentType", }, }, @@ -8204,150 +7862,115 @@ Array [ Array [ Object { "categoryDescription___NODE": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry___decategoryDescriptionTextNode", - "children": Array [ - "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry___detitleTextNode", - "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry___decategoryDescriptionTextNode", - ], - "contentful_id": "c7LAnCobuuWYSqks6wAwY2a", - "createdAt": "2017-06-27T09:35:44.000Z", + "children": Array [], "icon___NODE": "rocybtov1ozk___c6m5AJ9vMPKc8OUoQeoCS4o___Asset___de", "id": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry___de", "internal": Object { "contentDigest": "2020-06-30T11:22:54.201Z", "type": "ContentfulCategory", }, - "node_locale": "de", "parent": "Category", "product___NODE": Array [ "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry___de", "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry___de", "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry___de", ], - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "6XwpTaSiiI2Ak2Ww0oi6qa", - "id": "c6XwpTaSiiI2Ak2Ww0oi6qa", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 4, + "contentType___NODE": "Category", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.000Z", + "id": "c7LAnCobuuWYSqks6wAwY2a", + "locale": "de", + "publishedAt": "2020-06-30T11:22:54.201Z", + "publishedVersion": 4, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "title___NODE": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry___detitleTextNode", - "updatedAt": "2020-06-30T11:22:54.201Z", }, ], Array [ Object { "categoryDescription___NODE": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry___decategoryDescriptionTextNode", - "children": Array [ - "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry___detitleTextNode", - "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry___decategoryDescriptionTextNode", - ], - "contentful_id": "c24DPGBDeGEaYy8ms4Y8QMQ", - "createdAt": "2017-06-27T09:35:44.992Z", + "children": Array [], "icon___NODE": "rocybtov1ozk___c6t4HKjytPi0mYgs240wkG___Asset___de", "id": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry___de", "internal": Object { "contentDigest": "2017-06-27T09:46:43.477Z", "type": "ContentfulCategory", }, - "node_locale": "de", "parent": "Category", "product___NODE": Array [ "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry___de", ], - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "6XwpTaSiiI2Ak2Ww0oi6qa", - "id": "c6XwpTaSiiI2Ak2Ww0oi6qa", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Category", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.992Z", + "id": "c24DPGBDeGEaYy8ms4Y8QMQ", + "locale": "de", + "publishedAt": "2017-06-27T09:46:43.477Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "title___NODE": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry___detitleTextNode", - "updatedAt": "2017-06-27T09:46:43.477Z", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry___detitleTextNode", "internal": Object { "content": "Haus & Küche", "contentDigest": "2020-06-30T11:22:54.201Z", "mediaType": "text/markdown", - "type": "contentfulCategoryTitleTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry___de", - "sys": Object { - "type": "Entry", - }, - "title": "Haus & Küche", + "raw": "Haus & Küche", }, ], Array [ Object { - "categoryDescription": "Shop für Möbel, Bettwäsche, Bad, Staubsauger, Küchenprodukte und vieles mehr", - "children": Array [], "id": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry___decategoryDescriptionTextNode", "internal": Object { "content": "Shop für Möbel, Bettwäsche, Bad, Staubsauger, Küchenprodukte und vieles mehr", "contentDigest": "2020-06-30T11:22:54.201Z", "mediaType": "text/markdown", - "type": "contentfulCategoryCategoryDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry___de", - "sys": Object { - "type": "Entry", - }, + "raw": "Shop für Möbel, Bettwäsche, Bad, Staubsauger, Küchenprodukte und vieles mehr", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry___detitleTextNode", "internal": Object { "content": "Spielzeug", "contentDigest": "2017-06-27T09:46:43.477Z", "mediaType": "text/markdown", - "type": "contentfulCategoryTitleTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry___de", - "sys": Object { - "type": "Entry", - }, - "title": "Spielzeug", + "raw": "Spielzeug", }, ], Array [ Object { - "categoryDescription": "Spielzeugladen, Spiele, Lernhilfen", - "children": Array [], "id": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry___decategoryDescriptionTextNode", "internal": Object { "content": "Spielzeugladen, Spiele, Lernhilfen", "contentDigest": "2017-06-27T09:46:43.477Z", "mediaType": "text/markdown", - "type": "contentfulCategoryCategoryDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry___de", - "sys": Object { - "type": "Entry", - }, + "raw": "Spielzeugladen, Spiele, Lernhilfen", }, ], Array [ Object { - "children": Array [], "description": null, "displayField": "companyName", "id": "Brand", @@ -8356,22 +7979,23 @@ Array [ "type": "ContentfulContentType", }, "name": "Brand", - "parent": null, "sys": Object { + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:31.534Z", + "id": "sFzTZbSuM8coEwygeUYes", + "locale": "en-US", + "publishedAt": "2017-06-27T09:41:09.339Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "ContentType", }, }, ], Array [ Object { - "children": Array [ - "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___EntrycompanyNameTextNode", - "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___EntrycompanyDescriptionTextNode", - ], + "children": Array [], "companyDescription___NODE": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___EntrycompanyDescriptionTextNode", "companyName___NODE": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___EntrycompanyNameTextNode", - "contentful_id": "c651CQ8rLoIYCeY6G0QG22q", - "createdAt": "2017-06-27T09:35:43.997Z", "email": "normann@normann-copenhagen.com", "id": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___Entry", "internal": Object { @@ -8379,7 +8003,6 @@ Array [ "type": "ContentfulBrand", }, "logo___NODE": "rocybtov1ozk___c3wtvPBbBjiMKqKKga8I2Cu___Asset", - "node_locale": "en-US", "parent": "Brand", "phone": Array [ "+45 35 55 44 59", @@ -8388,34 +8011,26 @@ Array [ "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry", "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry", ], - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "sFzTZbSuM8coEwygeUYes", - "id": "sFzTZbSuM8coEwygeUYes", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Brand", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:43.997Z", + "id": "c651CQ8rLoIYCeY6G0QG22q", + "locale": "en-US", + "publishedAt": "2017-06-27T09:55:16.820Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "twitter": "https://twitter.com/NormannCPH", - "updatedAt": "2017-06-27T09:55:16.820Z", "website": "http://www.normann-copenhagen.com/", }, ], Array [ Object { - "children": Array [ - "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___EntrycompanyNameTextNode", - "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___EntrycompanyDescriptionTextNode", - ], + "children": Array [], "companyDescription___NODE": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___EntrycompanyDescriptionTextNode", "companyName___NODE": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___EntrycompanyNameTextNode", - "contentful_id": "c4LgMotpNF6W20YKmuemW0a", - "createdAt": "2017-06-27T09:35:44.396Z", "email": "info@acgears.com", "id": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry", "internal": Object { @@ -8423,7 +8038,6 @@ Array [ "type": "ContentfulBrand", }, "logo___NODE": "rocybtov1ozk___c2Y8LhXLnYAYqKCGEWG4EKI___Asset", - "node_locale": "en-US", "parent": "Brand", "phone": Array [ "+1 212 260 2269", @@ -8431,116 +8045,93 @@ Array [ "product___NODE": Array [ "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry", ], - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "sFzTZbSuM8coEwygeUYes", - "id": "sFzTZbSuM8coEwygeUYes", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Brand", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.396Z", + "id": "c4LgMotpNF6W20YKmuemW0a", + "locale": "en-US", + "publishedAt": "2017-06-27T09:51:15.647Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, - "updatedAt": "2017-06-27T09:51:15.647Z", "website": "http://www.lemnos.jp/en/", }, ], Array [ Object { - "children": Array [ - "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___EntrycompanyNameTextNode", - "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___EntrycompanyDescriptionTextNode", - ], + "children": Array [], "companyDescription___NODE": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___EntrycompanyDescriptionTextNode", "companyName___NODE": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___EntrycompanyNameTextNode", - "contentful_id": "JrePkDVYomE8AwcuCUyMi", - "createdAt": "2017-06-27T09:35:44.988Z", "id": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___Entry", "internal": Object { "contentDigest": "2017-06-27T09:50:36.937Z", "type": "ContentfulBrand", }, "logo___NODE": "rocybtov1ozk___c4zj1ZOfHgQ8oqgaSKm4Qo2___Asset", - "node_locale": "en-US", "parent": "Brand", "product___NODE": Array [ "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry", ], - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "sFzTZbSuM8coEwygeUYes", - "id": "sFzTZbSuM8coEwygeUYes", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Brand", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.988Z", + "id": "JrePkDVYomE8AwcuCUyMi", + "locale": "en-US", + "publishedAt": "2017-06-27T09:50:36.937Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, - "updatedAt": "2017-06-27T09:50:36.937Z", "website": "http://playsam.com/", }, ], Array [ Object { - "children": Array [], - "companyName": "Normann Copenhagen", "id": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___EntrycompanyNameTextNode", "internal": Object { "content": "Normann Copenhagen", "contentDigest": "2017-06-27T09:55:16.820Z", "mediaType": "text/markdown", - "type": "contentfulBrandCompanyNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___Entry", - "sys": Object { - "type": "Entry", - }, + "raw": "Normann Copenhagen", }, ], Array [ Object { - "children": Array [], - "companyDescription": "Normann Copenhagen is a way of living - a mindset. We love to challenge the conventional design rules. This is why you will find traditional materials put into untraditional use such as a Stone Hook made of Icelandic stones, a vase made out of silicon and last but not least a dog made out of plastic.", "id": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___EntrycompanyDescriptionTextNode", "internal": Object { "content": "Normann Copenhagen is a way of living - a mindset. We love to challenge the conventional design rules. This is why you will find traditional materials put into untraditional use such as a Stone Hook made of Icelandic stones, a vase made out of silicon and last but not least a dog made out of plastic.", "contentDigest": "2017-06-27T09:55:16.820Z", "mediaType": "text/markdown", - "type": "contentfulBrandCompanyDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___Entry", - "sys": Object { - "type": "Entry", - }, + "raw": "Normann Copenhagen is a way of living - a mindset. We love to challenge the conventional design rules. This is why you will find traditional materials put into untraditional use such as a Stone Hook made of Icelandic stones, a vase made out of silicon and last but not least a dog made out of plastic.", }, ], Array [ Object { - "children": Array [], - "companyName": "Lemnos", "id": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___EntrycompanyNameTextNode", "internal": Object { "content": "Lemnos", "contentDigest": "2017-06-27T09:51:15.647Z", "mediaType": "text/markdown", - "type": "contentfulBrandCompanyNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry", - "sys": Object { - "type": "Entry", - }, + "raw": "Lemnos", }, ], Array [ Object { - "children": Array [], - "companyDescription": "TAKATA Lemnos Inc. was founded in 1947 as a brass casting manufacturing industry in Takaoka-city, Toyama Prefecture, Japan and we launched out into the full-scale business trade with Seiko Clock Co., Ltd. since 1966. + "id": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___EntrycompanyDescriptionTextNode", + "internal": Object { + "content": "TAKATA Lemnos Inc. was founded in 1947 as a brass casting manufacturing industry in Takaoka-city, Toyama Prefecture, Japan and we launched out into the full-scale business trade with Seiko Clock Co., Ltd. since 1966. We entered into the development for the original planning from late 1980 and \\"Lemnos Brand\\" recognized as the global design clock by a masterpiece \\"HOLA\\" designed by Kazuo KAWASAKI which released in 1989. @@ -8551,9 +8142,12 @@ Lemnos brand products are now highly praised from the design shops and the inter In recent years, we also have been given high priority to develop interior accessories making full use of our traditional techniques by the founding manufacturer and we always focus our minds on the development for the new Lemnos products in the new market. Our Lemnos products are made carefully by our craftsmen finely honed skillful techniques in Japan. They surely bring out the attractiveness of the materials to the maximum and create fine products not being influenced on the fashion trend accordingly. TAKATA Lemnos Inc. definitely would like to be innovative and continuously propose the beauty lasts forever.", - "id": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___EntrycompanyDescriptionTextNode", - "internal": Object { - "content": "TAKATA Lemnos Inc. was founded in 1947 as a brass casting manufacturing industry in Takaoka-city, Toyama Prefecture, Japan and we launched out into the full-scale business trade with Seiko Clock Co., Ltd. since 1966. + "contentDigest": "2017-06-27T09:51:15.647Z", + "mediaType": "text/markdown", + "type": "ContentfulNodeTypeText", + }, + "parent": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry", + "raw": "TAKATA Lemnos Inc. was founded in 1947 as a brass casting manufacturing industry in Takaoka-city, Toyama Prefecture, Japan and we launched out into the full-scale business trade with Seiko Clock Co., Ltd. since 1966. We entered into the development for the original planning from late 1980 and \\"Lemnos Brand\\" recognized as the global design clock by a masterpiece \\"HOLA\\" designed by Kazuo KAWASAKI which released in 1989. @@ -8564,53 +8158,36 @@ Lemnos brand products are now highly praised from the design shops and the inter In recent years, we also have been given high priority to develop interior accessories making full use of our traditional techniques by the founding manufacturer and we always focus our minds on the development for the new Lemnos products in the new market. Our Lemnos products are made carefully by our craftsmen finely honed skillful techniques in Japan. They surely bring out the attractiveness of the materials to the maximum and create fine products not being influenced on the fashion trend accordingly. TAKATA Lemnos Inc. definitely would like to be innovative and continuously propose the beauty lasts forever.", - "contentDigest": "2017-06-27T09:51:15.647Z", - "mediaType": "text/markdown", - "type": "contentfulBrandCompanyDescriptionTextNode", - }, - "parent": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry", - "sys": Object { - "type": "Entry", - }, }, ], Array [ Object { - "children": Array [], - "companyName": "Playsam", "id": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___EntrycompanyNameTextNode", "internal": Object { "content": "Playsam", "contentDigest": "2017-06-27T09:50:36.937Z", "mediaType": "text/markdown", - "type": "contentfulBrandCompanyNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___Entry", - "sys": Object { - "type": "Entry", - }, + "raw": "Playsam", }, ], Array [ Object { - "children": Array [], - "companyDescription": "Playsam is the leading Scandinavian design company for executive wooden toy gift. Scandinavian design playful creativity, integrity and sophistication are Playsam. Scandinavian design and wooden toy makes Playsam gift lovely to the world of design since 1984.", "id": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___EntrycompanyDescriptionTextNode", "internal": Object { "content": "Playsam is the leading Scandinavian design company for executive wooden toy gift. Scandinavian design playful creativity, integrity and sophistication are Playsam. Scandinavian design and wooden toy makes Playsam gift lovely to the world of design since 1984.", "contentDigest": "2017-06-27T09:50:36.937Z", "mediaType": "text/markdown", - "type": "contentfulBrandCompanyDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___Entry", - "sys": Object { - "type": "Entry", - }, + "raw": "Playsam is the leading Scandinavian design company for executive wooden toy gift. Scandinavian design playful creativity, integrity and sophistication are Playsam. Scandinavian design and wooden toy makes Playsam gift lovely to the world of design since 1984.", }, ], Array [ Object { - "children": Array [], "description": null, "displayField": "companyName", "id": "Brand", @@ -8619,22 +8196,23 @@ Our Lemnos products are made carefully by our craftsmen finely honed skillful te "type": "ContentfulContentType", }, "name": "Brand", - "parent": null, "sys": Object { + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:31.534Z", + "id": "sFzTZbSuM8coEwygeUYes", + "locale": "de", + "publishedAt": "2017-06-27T09:41:09.339Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "ContentType", }, }, ], Array [ Object { - "children": Array [ - "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___Entry___decompanyNameTextNode", - "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___Entry___decompanyDescriptionTextNode", - ], + "children": Array [], "companyDescription___NODE": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___Entry___decompanyDescriptionTextNode", "companyName___NODE": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___Entry___decompanyNameTextNode", - "contentful_id": "c651CQ8rLoIYCeY6G0QG22q", - "createdAt": "2017-06-27T09:35:43.997Z", "email": "normann@normann-copenhagen.com", "id": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___Entry___de", "internal": Object { @@ -8642,7 +8220,6 @@ Our Lemnos products are made carefully by our craftsmen finely honed skillful te "type": "ContentfulBrand", }, "logo___NODE": "rocybtov1ozk___c3wtvPBbBjiMKqKKga8I2Cu___Asset___de", - "node_locale": "de", "parent": "Brand", "phone": Array [ "+45 35 55 44 59", @@ -8651,34 +8228,26 @@ Our Lemnos products are made carefully by our craftsmen finely honed skillful te "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry___de", "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry___de", ], - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "sFzTZbSuM8coEwygeUYes", - "id": "sFzTZbSuM8coEwygeUYes", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Brand", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:43.997Z", + "id": "c651CQ8rLoIYCeY6G0QG22q", + "locale": "de", + "publishedAt": "2017-06-27T09:55:16.820Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "twitter": "https://twitter.com/NormannCPH", - "updatedAt": "2017-06-27T09:55:16.820Z", "website": "http://www.normann-copenhagen.com/", }, ], Array [ Object { - "children": Array [ - "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry___decompanyNameTextNode", - "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry___decompanyDescriptionTextNode", - ], + "children": Array [], "companyDescription___NODE": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry___decompanyDescriptionTextNode", "companyName___NODE": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry___decompanyNameTextNode", - "contentful_id": "c4LgMotpNF6W20YKmuemW0a", - "createdAt": "2017-06-27T09:35:44.396Z", "email": "info@acgears.com", "id": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry___de", "internal": Object { @@ -8686,7 +8255,6 @@ Our Lemnos products are made carefully by our craftsmen finely honed skillful te "type": "ContentfulBrand", }, "logo___NODE": "rocybtov1ozk___c2Y8LhXLnYAYqKCGEWG4EKI___Asset___de", - "node_locale": "de", "parent": "Brand", "phone": Array [ "+1 212 260 2269", @@ -8694,116 +8262,93 @@ Our Lemnos products are made carefully by our craftsmen finely honed skillful te "product___NODE": Array [ "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry___de", ], - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "sFzTZbSuM8coEwygeUYes", - "id": "sFzTZbSuM8coEwygeUYes", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Brand", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.396Z", + "id": "c4LgMotpNF6W20YKmuemW0a", + "locale": "de", + "publishedAt": "2017-06-27T09:51:15.647Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, - "updatedAt": "2017-06-27T09:51:15.647Z", "website": "http://www.lemnos.jp/en/", }, ], Array [ Object { - "children": Array [ - "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___Entry___decompanyNameTextNode", - "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___Entry___decompanyDescriptionTextNode", - ], + "children": Array [], "companyDescription___NODE": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___Entry___decompanyDescriptionTextNode", "companyName___NODE": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___Entry___decompanyNameTextNode", - "contentful_id": "JrePkDVYomE8AwcuCUyMi", - "createdAt": "2017-06-27T09:35:44.988Z", "id": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___Entry___de", "internal": Object { "contentDigest": "2017-06-27T09:50:36.937Z", "type": "ContentfulBrand", }, "logo___NODE": "rocybtov1ozk___c4zj1ZOfHgQ8oqgaSKm4Qo2___Asset___de", - "node_locale": "de", "parent": "Brand", "product___NODE": Array [ "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry___de", ], - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "sFzTZbSuM8coEwygeUYes", - "id": "sFzTZbSuM8coEwygeUYes", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Brand", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.988Z", + "id": "JrePkDVYomE8AwcuCUyMi", + "locale": "de", + "publishedAt": "2017-06-27T09:50:36.937Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, - "updatedAt": "2017-06-27T09:50:36.937Z", "website": "http://playsam.com/", }, ], Array [ Object { - "children": Array [], - "companyName": "Normann Copenhagen", "id": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___Entry___decompanyNameTextNode", "internal": Object { "content": "Normann Copenhagen", "contentDigest": "2017-06-27T09:55:16.820Z", "mediaType": "text/markdown", - "type": "contentfulBrandCompanyNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___Entry___de", - "sys": Object { - "type": "Entry", - }, + "raw": "Normann Copenhagen", }, ], Array [ Object { - "children": Array [], - "companyDescription": "Normann Kopenhagen ist eine Art zu leben - eine Denkweise. Wir lieben es, die konventionellen Designregeln herauszufordern. Aus diesem Grund finden Sie traditionelle Materialien, die in untraditionelle Verwendung wie ein Steinhaken aus isländischen Steinen, eine Vase aus Silizium und last but not least ein Hund aus Kunststoff.", "id": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___Entry___decompanyDescriptionTextNode", "internal": Object { "content": "Normann Kopenhagen ist eine Art zu leben - eine Denkweise. Wir lieben es, die konventionellen Designregeln herauszufordern. Aus diesem Grund finden Sie traditionelle Materialien, die in untraditionelle Verwendung wie ein Steinhaken aus isländischen Steinen, eine Vase aus Silizium und last but not least ein Hund aus Kunststoff.", "contentDigest": "2017-06-27T09:55:16.820Z", "mediaType": "text/markdown", - "type": "contentfulBrandCompanyDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___Entry___de", - "sys": Object { - "type": "Entry", - }, + "raw": "Normann Kopenhagen ist eine Art zu leben - eine Denkweise. Wir lieben es, die konventionellen Designregeln herauszufordern. Aus diesem Grund finden Sie traditionelle Materialien, die in untraditionelle Verwendung wie ein Steinhaken aus isländischen Steinen, eine Vase aus Silizium und last but not least ein Hund aus Kunststoff.", }, ], Array [ Object { - "children": Array [], - "companyName": "Lemnos", "id": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry___decompanyNameTextNode", "internal": Object { "content": "Lemnos", "contentDigest": "2017-06-27T09:51:15.647Z", "mediaType": "text/markdown", - "type": "contentfulBrandCompanyNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry___de", - "sys": Object { - "type": "Entry", - }, + "raw": "Lemnos", }, ], Array [ Object { - "children": Array [], - "companyDescription": "TAKATA Lemnos Inc. wurde im Jahre 1947 als Messing-Casting-Fertigungsindustrie in Takaoka-Stadt, Toyama Prefecture, Japan gegründet und wir starteten seit 1966 mit der Seiko Clock Co., Ltd. + "id": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry___decompanyDescriptionTextNode", + "internal": Object { + "content": "TAKATA Lemnos Inc. wurde im Jahre 1947 als Messing-Casting-Fertigungsindustrie in Takaoka-Stadt, Toyama Prefecture, Japan gegründet und wir starteten seit 1966 mit der Seiko Clock Co., Ltd. Wir haben die Entwicklung für die ursprüngliche Planung ab Ende 1980 eingegangen und \\"Lemnos Brand\\" wurde als globale Designuhr von einem Meisterwerk \\"HOLA\\" von Kazuo KAWASAKI entworfen, das 1989 erschien. @@ -8814,9 +8359,12 @@ Lemnos Markenprodukte werden nun von den Designläden und den Innenhandelsgesch In den vergangenen Jahren haben wir auch eine hohe Priorität für die Entwicklung von Innenausstattung, die den traditionellen Techniken des Gründungsherstellers voll ausnutzt, und wir konzentrieren uns immer auf die Entwicklung der neuen Lemnos-Produkte im neuen Markt. Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliffen geschickten Techniken in Japan gemacht. Sie bringen sicherlich die Attraktivität der Materialien auf das Maximum und schaffen feine Produkte nicht beeinflusst auf die Mode-Trend entsprechend. TAKATA Lemnos Inc. möchte definitiv innovativ sein und ständig vorschlagen, die Schönheit dauert ewig.", - "id": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry___decompanyDescriptionTextNode", - "internal": Object { - "content": "TAKATA Lemnos Inc. wurde im Jahre 1947 als Messing-Casting-Fertigungsindustrie in Takaoka-Stadt, Toyama Prefecture, Japan gegründet und wir starteten seit 1966 mit der Seiko Clock Co., Ltd. + "contentDigest": "2017-06-27T09:51:15.647Z", + "mediaType": "text/markdown", + "type": "ContentfulNodeTypeText", + }, + "parent": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry___de", + "raw": "TAKATA Lemnos Inc. wurde im Jahre 1947 als Messing-Casting-Fertigungsindustrie in Takaoka-Stadt, Toyama Prefecture, Japan gegründet und wir starteten seit 1966 mit der Seiko Clock Co., Ltd. Wir haben die Entwicklung für die ursprüngliche Planung ab Ende 1980 eingegangen und \\"Lemnos Brand\\" wurde als globale Designuhr von einem Meisterwerk \\"HOLA\\" von Kazuo KAWASAKI entworfen, das 1989 erschien. @@ -8827,53 +8375,36 @@ Lemnos Markenprodukte werden nun von den Designläden und den Innenhandelsgesch In den vergangenen Jahren haben wir auch eine hohe Priorität für die Entwicklung von Innenausstattung, die den traditionellen Techniken des Gründungsherstellers voll ausnutzt, und wir konzentrieren uns immer auf die Entwicklung der neuen Lemnos-Produkte im neuen Markt. Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliffen geschickten Techniken in Japan gemacht. Sie bringen sicherlich die Attraktivität der Materialien auf das Maximum und schaffen feine Produkte nicht beeinflusst auf die Mode-Trend entsprechend. TAKATA Lemnos Inc. möchte definitiv innovativ sein und ständig vorschlagen, die Schönheit dauert ewig.", - "contentDigest": "2017-06-27T09:51:15.647Z", - "mediaType": "text/markdown", - "type": "contentfulBrandCompanyDescriptionTextNode", - }, - "parent": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry___de", - "sys": Object { - "type": "Entry", - }, }, ], Array [ Object { - "children": Array [], - "companyName": "Playsam", "id": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___Entry___decompanyNameTextNode", "internal": Object { "content": "Playsam", "contentDigest": "2017-06-27T09:50:36.937Z", "mediaType": "text/markdown", - "type": "contentfulBrandCompanyNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___Entry___de", - "sys": Object { - "type": "Entry", - }, + "raw": "Playsam", }, ], Array [ Object { - "children": Array [], - "companyDescription": "Playsam ist die führende skandinavische Designfirma für Executive Holzspielzeug Geschenk. Skandinavisches Design spielerische Kreativität, Integrität und Raffinesse sind Playsam. Skandinavisches Design und hölzernes Spielzeug macht Playsam Geschenk schön in die Welt des Designs seit 1984.", "id": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___Entry___decompanyDescriptionTextNode", "internal": Object { "content": "Playsam ist die führende skandinavische Designfirma für Executive Holzspielzeug Geschenk. Skandinavisches Design spielerische Kreativität, Integrität und Raffinesse sind Playsam. Skandinavisches Design und hölzernes Spielzeug macht Playsam Geschenk schön in die Welt des Designs seit 1984.", "contentDigest": "2017-06-27T09:50:36.937Z", "mediaType": "text/markdown", - "type": "contentfulBrandCompanyDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___Entry___de", - "sys": Object { - "type": "Entry", - }, + "raw": "Playsam ist die führende skandinavische Designfirma für Executive Holzspielzeug Geschenk. Skandinavisches Design spielerische Kreativität, Integrität und Raffinesse sind Playsam. Skandinavisches Design und hölzernes Spielzeug macht Playsam Geschenk schön in die Welt des Designs seit 1984.", }, ], Array [ Object { - "children": Array [], "description": null, "displayField": "productName", "id": "Product", @@ -8882,8 +8413,14 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "type": "ContentfulContentType", }, "name": "Product", - "parent": null, "sys": Object { + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:31.538Z", + "id": "c2PqfXUJwE8qSYKuM0U6w8M", + "locale": "en-US", + "publishedAt": "2017-06-27T09:40:36.821Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "ContentType", }, }, @@ -8894,12 +8431,7 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "categories___NODE": Array [ "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry", ], - "children": Array [ - "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___EntryproductNameTextNode", - "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___EntryproductDescriptionTextNode", - ], - "contentful_id": "c5KsDBWseXY6QegucYAoacS", - "createdAt": "2017-06-27T09:35:43.996Z", + "children": Array [], "id": "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry", "image___NODE": Array [ "rocybtov1ozk___wtrHxeu3zEoEce2MokCSi___Asset", @@ -8908,7 +8440,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "contentDigest": "2017-06-27T09:56:59.626Z", "type": "ContentfulProduct", }, - "node_locale": "en-US", "parent": "Product", "price": 44, "productDescription___NODE": "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___EntryproductDescriptionTextNode", @@ -8917,17 +8448,15 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "sizetypecolor": "Length: 135 mm | color: espresso, green, or icar (white)", "sku": "B001R6JUZ2", "slug": "playsam-streamliner-classic-car-espresso", - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "2PqfXUJwE8qSYKuM0U6w8M", - "id": "c2PqfXUJwE8qSYKuM0U6w8M", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Product", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:43.996Z", + "id": "c5KsDBWseXY6QegucYAoacS", + "locale": "en-US", + "publishedAt": "2017-06-27T09:56:59.626Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "tags": Array [ @@ -8937,7 +8466,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "sweden", "design", ], - "updatedAt": "2017-06-27T09:56:59.626Z", "website": "http://www.amazon.com/dp/B001R6JUZ2/", }, ], @@ -8947,12 +8475,7 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "categories___NODE": Array [ "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry", ], - "children": Array [ - "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___EntryproductNameTextNode", - "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___EntryproductDescriptionTextNode", - ], - "contentful_id": "c3DVqIYj4dOwwcKu6sgqOgg", - "createdAt": "2017-06-27T09:35:44.006Z", + "children": Array [], "id": "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry", "image___NODE": Array [ "rocybtov1ozk___Xc0ny7GWsMEMCeASWO2um___Asset", @@ -8961,7 +8484,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "contentDigest": "2017-06-27T09:54:51.159Z", "type": "ContentfulProduct", }, - "node_locale": "en-US", "parent": "Product", "price": 11, "productDescription___NODE": "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___EntryproductDescriptionTextNode", @@ -8970,17 +8492,15 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "sizetypecolor": "3 x 3 x 5 inches; 5.3 ounces", "sku": "B00E82D7I8", "slug": "hudson-wall-cup", - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "2PqfXUJwE8qSYKuM0U6w8M", - "id": "c2PqfXUJwE8qSYKuM0U6w8M", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Product", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.006Z", + "id": "c3DVqIYj4dOwwcKu6sgqOgg", + "locale": "en-US", + "publishedAt": "2017-06-27T09:54:51.159Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "tags": Array [ @@ -8988,7 +8508,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "flowers", "accessories", ], - "updatedAt": "2017-06-27T09:54:51.159Z", "website": "http://www.amazon.com/dp/B00E82D7I8/", }, ], @@ -8998,12 +8517,7 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "categories___NODE": Array [ "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry", ], - "children": Array [ - "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___EntryproductNameTextNode", - "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___EntryproductDescriptionTextNode", - ], - "contentful_id": "c6dbjWqNd9SqccegcqYq224", - "createdAt": "2017-06-27T09:35:44.049Z", + "children": Array [], "id": "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry", "image___NODE": Array [ "rocybtov1ozk___c10TkaLheGeQG6qQGqWYqUI___Asset", @@ -9012,7 +8526,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "contentDigest": "2017-06-27T09:53:23.179Z", "type": "ContentfulProduct", }, - "node_locale": "en-US", "parent": "Product", "price": 22, "productDescription___NODE": "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___EntryproductDescriptionTextNode", @@ -9021,17 +8534,15 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "sizetypecolor": "0.8 x 0.8 x 11.2 inches; 1.6 ounces", "sku": "B0081F2CCK", "slug": "whisk-beater", - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "2PqfXUJwE8qSYKuM0U6w8M", - "id": "c2PqfXUJwE8qSYKuM0U6w8M", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Product", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.049Z", + "id": "c6dbjWqNd9SqccegcqYq224", + "locale": "en-US", + "publishedAt": "2017-06-27T09:53:23.179Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "tags": Array [ @@ -9041,7 +8552,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "scandinavia", "design", ], - "updatedAt": "2017-06-27T09:53:23.179Z", "website": "http://www.amazon.com/dp/B0081F2CCK/", }, ], @@ -9051,12 +8561,7 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "categories___NODE": Array [ "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry", ], - "children": Array [ - "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___EntryproductNameTextNode", - "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___EntryproductDescriptionTextNode", - ], - "contentful_id": "c4BqrajvA8E6qwgkieoqmqO", - "createdAt": "2017-06-27T09:35:44.130Z", + "children": Array [], "id": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry", "image___NODE": Array [ "rocybtov1ozk___KTRF62Q4gg60q6WCsWKw8___Asset", @@ -9065,7 +8570,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "contentDigest": "2017-06-27T09:52:29.215Z", "type": "ContentfulProduct", }, - "node_locale": "en-US", "parent": "Product", "price": 120, "productDescription___NODE": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___EntryproductDescriptionTextNode", @@ -9074,17 +8578,15 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "sizetypecolor": "10\\" x 2.2\\"", "sku": "B00MG4ULK2", "slug": "soso-wall-clock", - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "2PqfXUJwE8qSYKuM0U6w8M", - "id": "c2PqfXUJwE8qSYKuM0U6w8M", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Product", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.130Z", + "id": "c4BqrajvA8E6qwgkieoqmqO", + "locale": "en-US", + "publishedAt": "2017-06-27T09:52:29.215Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "tags": Array [ @@ -9094,149 +8596,115 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "yellow", "gifts", ], - "updatedAt": "2017-06-27T09:52:29.215Z", "website": "http://store.dwell.com/soso-wall-clock.html", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___EntryproductNameTextNode", "internal": Object { "content": "Playsam Streamliner Classic Car, Espresso", "contentDigest": "2017-06-27T09:56:59.626Z", "mediaType": "text/markdown", - "type": "contentfulProductProductNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry", - "productName": "Playsam Streamliner Classic Car, Espresso", - "sys": Object { - "type": "Entry", - }, + "raw": "Playsam Streamliner Classic Car, Espresso", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___EntryproductDescriptionTextNode", "internal": Object { "content": "A classic Playsam design, the Streamliner Classic Car has been selected as Swedish Design Classic by the Swedish National Museum for its inventive style and sleek surface. It's no wonder that this wooden car has also been a long-standing favorite for children both big and small!", "contentDigest": "2017-06-27T09:56:59.626Z", "mediaType": "text/markdown", - "type": "contentfulProductProductDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry", - "productDescription": "A classic Playsam design, the Streamliner Classic Car has been selected as Swedish Design Classic by the Swedish National Museum for its inventive style and sleek surface. It's no wonder that this wooden car has also been a long-standing favorite for children both big and small!", - "sys": Object { - "type": "Entry", - }, + "raw": "A classic Playsam design, the Streamliner Classic Car has been selected as Swedish Design Classic by the Swedish National Museum for its inventive style and sleek surface. It's no wonder that this wooden car has also been a long-standing favorite for children both big and small!", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___EntryproductNameTextNode", "internal": Object { "content": "Hudson Wall Cup", "contentDigest": "2017-06-27T09:54:51.159Z", "mediaType": "text/markdown", - "type": "contentfulProductProductNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry", - "productName": "Hudson Wall Cup", - "sys": Object { - "type": "Entry", - }, + "raw": "Hudson Wall Cup", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___EntryproductDescriptionTextNode", "internal": Object { "content": "Wall Hanging Glass Flower Vase and Terrarium", "contentDigest": "2017-06-27T09:54:51.159Z", "mediaType": "text/markdown", - "type": "contentfulProductProductDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry", - "productDescription": "Wall Hanging Glass Flower Vase and Terrarium", - "sys": Object { - "type": "Entry", - }, + "raw": "Wall Hanging Glass Flower Vase and Terrarium", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___EntryproductNameTextNode", "internal": Object { "content": "Whisk Beater", "contentDigest": "2017-06-27T09:53:23.179Z", "mediaType": "text/markdown", - "type": "contentfulProductProductNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry", - "productName": "Whisk Beater", - "sys": Object { - "type": "Entry", - }, + "raw": "Whisk Beater", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___EntryproductDescriptionTextNode", "internal": Object { "content": "A creative little whisk that comes in 8 different colors. Handy and easy to clean after use. A great gift idea.", "contentDigest": "2017-06-27T09:53:23.179Z", "mediaType": "text/markdown", - "type": "contentfulProductProductDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry", - "productDescription": "A creative little whisk that comes in 8 different colors. Handy and easy to clean after use. A great gift idea.", - "sys": Object { - "type": "Entry", - }, + "raw": "A creative little whisk that comes in 8 different colors. Handy and easy to clean after use. A great gift idea.", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___EntryproductNameTextNode", "internal": Object { "content": "SoSo Wall Clock", "contentDigest": "2017-06-27T09:52:29.215Z", "mediaType": "text/markdown", - "type": "contentfulProductProductNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry", - "productName": "SoSo Wall Clock", - "sys": Object { - "type": "Entry", - }, + "raw": "SoSo Wall Clock", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___EntryproductDescriptionTextNode", "internal": Object { "content": "The newly released SoSo Clock from Lemnos marries simple, clean design and bold, striking features. Its saturated marigold face is a lively pop of color to white or grey walls, but would also pair nicely with navy and maroon. Where most clocks feature numbers at the border of the clock, the SoSo brings them in tight to the middle, leaving a wide space between the numbers and the slight frame. The hour hand provides a nice interruption to the black and yellow of the clock - it is featured in a brilliant white. Despite its bold color and contrast, the SoSo maintains a clean, pure aesthetic that is suitable to a variety of contemporary interiors.", "contentDigest": "2017-06-27T09:52:29.215Z", "mediaType": "text/markdown", - "type": "contentfulProductProductDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry", - "productDescription": "The newly released SoSo Clock from Lemnos marries simple, clean design and bold, striking features. Its saturated marigold face is a lively pop of color to white or grey walls, but would also pair nicely with navy and maroon. Where most clocks feature numbers at the border of the clock, the SoSo brings them in tight to the middle, leaving a wide space between the numbers and the slight frame. The hour hand provides a nice interruption to the black and yellow of the clock - it is featured in a brilliant white. Despite its bold color and contrast, the SoSo maintains a clean, pure aesthetic that is suitable to a variety of contemporary interiors.", - "sys": Object { - "type": "Entry", - }, + "raw": "The newly released SoSo Clock from Lemnos marries simple, clean design and bold, striking features. Its saturated marigold face is a lively pop of color to white or grey walls, but would also pair nicely with navy and maroon. Where most clocks feature numbers at the border of the clock, the SoSo brings them in tight to the middle, leaving a wide space between the numbers and the slight frame. The hour hand provides a nice interruption to the black and yellow of the clock - it is featured in a brilliant white. Despite its bold color and contrast, the SoSo maintains a clean, pure aesthetic that is suitable to a variety of contemporary interiors.", }, ], Array [ Object { - "children": Array [], "description": null, "displayField": "productName", "id": "Product", @@ -9245,8 +8713,14 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "type": "ContentfulContentType", }, "name": "Product", - "parent": null, "sys": Object { + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:31.538Z", + "id": "c2PqfXUJwE8qSYKuM0U6w8M", + "locale": "de", + "publishedAt": "2017-06-27T09:40:36.821Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "ContentType", }, }, @@ -9257,12 +8731,7 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "categories___NODE": Array [ "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry___de", ], - "children": Array [ - "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry___deproductNameTextNode", - "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry___deproductDescriptionTextNode", - ], - "contentful_id": "c5KsDBWseXY6QegucYAoacS", - "createdAt": "2017-06-27T09:35:43.996Z", + "children": Array [], "id": "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry___de", "image___NODE": Array [ "rocybtov1ozk___wtrHxeu3zEoEce2MokCSi___Asset___de", @@ -9271,7 +8740,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "contentDigest": "2017-06-27T09:56:59.626Z", "type": "ContentfulProduct", }, - "node_locale": "de", "parent": "Product", "price": 44, "productDescription___NODE": "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry___deproductDescriptionTextNode", @@ -9280,17 +8748,15 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "sizetypecolor": "Length: 135 mm | color: espresso, green, or icar (white)", "sku": "B001R6JUZ2", "slug": "playsam-streamliner-classic-car-espresso", - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "2PqfXUJwE8qSYKuM0U6w8M", - "id": "c2PqfXUJwE8qSYKuM0U6w8M", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Product", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:43.996Z", + "id": "c5KsDBWseXY6QegucYAoacS", + "locale": "de", + "publishedAt": "2017-06-27T09:56:59.626Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "tags": Array [ @@ -9300,7 +8766,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "sweden", "design", ], - "updatedAt": "2017-06-27T09:56:59.626Z", "website": "http://www.amazon.com/dp/B001R6JUZ2/", }, ], @@ -9310,12 +8775,7 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "categories___NODE": Array [ "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry___de", ], - "children": Array [ - "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry___deproductNameTextNode", - "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry___deproductDescriptionTextNode", - ], - "contentful_id": "c3DVqIYj4dOwwcKu6sgqOgg", - "createdAt": "2017-06-27T09:35:44.006Z", + "children": Array [], "id": "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry___de", "image___NODE": Array [ "rocybtov1ozk___Xc0ny7GWsMEMCeASWO2um___Asset___de", @@ -9324,7 +8784,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "contentDigest": "2017-06-27T09:54:51.159Z", "type": "ContentfulProduct", }, - "node_locale": "de", "parent": "Product", "price": 11, "productDescription___NODE": "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry___deproductDescriptionTextNode", @@ -9333,17 +8792,15 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "sizetypecolor": "3 x 3 x 5 inches; 5.3 ounces", "sku": "B00E82D7I8", "slug": "hudson-wall-cup", - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "2PqfXUJwE8qSYKuM0U6w8M", - "id": "c2PqfXUJwE8qSYKuM0U6w8M", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Product", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.006Z", + "id": "c3DVqIYj4dOwwcKu6sgqOgg", + "locale": "de", + "publishedAt": "2017-06-27T09:54:51.159Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "tags": Array [ @@ -9351,7 +8808,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "flowers", "accessories", ], - "updatedAt": "2017-06-27T09:54:51.159Z", "website": "http://www.amazon.com/dp/B00E82D7I8/", }, ], @@ -9361,12 +8817,7 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "categories___NODE": Array [ "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry___de", ], - "children": Array [ - "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry___deproductNameTextNode", - "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry___deproductDescriptionTextNode", - ], - "contentful_id": "c6dbjWqNd9SqccegcqYq224", - "createdAt": "2017-06-27T09:35:44.049Z", + "children": Array [], "id": "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry___de", "image___NODE": Array [ "rocybtov1ozk___c10TkaLheGeQG6qQGqWYqUI___Asset___de", @@ -9375,7 +8826,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "contentDigest": "2017-06-27T09:53:23.179Z", "type": "ContentfulProduct", }, - "node_locale": "de", "parent": "Product", "price": 22, "productDescription___NODE": "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry___deproductDescriptionTextNode", @@ -9384,17 +8834,15 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "sizetypecolor": "0.8 x 0.8 x 11.2 inches; 1.6 ounces", "sku": "B0081F2CCK", "slug": "whisk-beater", - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "2PqfXUJwE8qSYKuM0U6w8M", - "id": "c2PqfXUJwE8qSYKuM0U6w8M", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Product", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.049Z", + "id": "c6dbjWqNd9SqccegcqYq224", + "locale": "de", + "publishedAt": "2017-06-27T09:53:23.179Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "tags": Array [ @@ -9404,7 +8852,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "scandinavia", "design", ], - "updatedAt": "2017-06-27T09:53:23.179Z", "website": "http://www.amazon.com/dp/B0081F2CCK/", }, ], @@ -9414,12 +8861,7 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "categories___NODE": Array [ "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry___de", ], - "children": Array [ - "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry___deproductNameTextNode", - "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry___deproductDescriptionTextNode", - ], - "contentful_id": "c4BqrajvA8E6qwgkieoqmqO", - "createdAt": "2017-06-27T09:35:44.130Z", + "children": Array [], "id": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry___de", "image___NODE": Array [ "rocybtov1ozk___KTRF62Q4gg60q6WCsWKw8___Asset___de", @@ -9428,7 +8870,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "contentDigest": "2017-06-27T09:52:29.215Z", "type": "ContentfulProduct", }, - "node_locale": "de", "parent": "Product", "price": 120, "productDescription___NODE": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry___deproductDescriptionTextNode", @@ -9437,17 +8878,15 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "sizetypecolor": "10\\" x 2.2\\"", "sku": "B00MG4ULK2", "slug": "soso-wall-clock", - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "2PqfXUJwE8qSYKuM0U6w8M", - "id": "c2PqfXUJwE8qSYKuM0U6w8M", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Product", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.130Z", + "id": "c4BqrajvA8E6qwgkieoqmqO", + "locale": "de", + "publishedAt": "2017-06-27T09:52:29.215Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "tags": Array [ @@ -9457,149 +8896,115 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "yellow", "gifts", ], - "updatedAt": "2017-06-27T09:52:29.215Z", "website": "http://store.dwell.com/soso-wall-clock.html", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry___deproductNameTextNode", "internal": Object { "content": "Playsam Streamliner Klassisches Auto, Espresso", "contentDigest": "2017-06-27T09:56:59.626Z", "mediaType": "text/markdown", - "type": "contentfulProductProductNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry___de", - "productName": "Playsam Streamliner Klassisches Auto, Espresso", - "sys": Object { - "type": "Entry", - }, + "raw": "Playsam Streamliner Klassisches Auto, Espresso", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry___deproductDescriptionTextNode", "internal": Object { "content": "Ein klassisches Playsam-Design, das Streamliner Classic Car wurde als Swedish Design Classic vom Schwedischen Nationalmuseum für seinen erfinderischen Stil und seine schlanke Oberfläche ausgewählt. Es ist kein Wunder, dass dieses hölzerne Auto auch ein langjähriger Liebling für Kinder gewesen ist, die groß und klein sind!", "contentDigest": "2017-06-27T09:56:59.626Z", "mediaType": "text/markdown", - "type": "contentfulProductProductDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry___de", - "productDescription": "Ein klassisches Playsam-Design, das Streamliner Classic Car wurde als Swedish Design Classic vom Schwedischen Nationalmuseum für seinen erfinderischen Stil und seine schlanke Oberfläche ausgewählt. Es ist kein Wunder, dass dieses hölzerne Auto auch ein langjähriger Liebling für Kinder gewesen ist, die groß und klein sind!", - "sys": Object { - "type": "Entry", - }, + "raw": "Ein klassisches Playsam-Design, das Streamliner Classic Car wurde als Swedish Design Classic vom Schwedischen Nationalmuseum für seinen erfinderischen Stil und seine schlanke Oberfläche ausgewählt. Es ist kein Wunder, dass dieses hölzerne Auto auch ein langjähriger Liebling für Kinder gewesen ist, die groß und klein sind!", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry___deproductNameTextNode", "internal": Object { "content": "Becher", "contentDigest": "2017-06-27T09:54:51.159Z", "mediaType": "text/markdown", - "type": "contentfulProductProductNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry___de", - "productName": "Becher", - "sys": Object { - "type": "Entry", - }, + "raw": "Becher", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry___deproductDescriptionTextNode", "internal": Object { "content": "Wand-hängende Glas-Blumen-Vase und Terrarium", "contentDigest": "2017-06-27T09:54:51.159Z", "mediaType": "text/markdown", - "type": "contentfulProductProductDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry___de", - "productDescription": "Wand-hängende Glas-Blumen-Vase und Terrarium", - "sys": Object { - "type": "Entry", - }, + "raw": "Wand-hängende Glas-Blumen-Vase und Terrarium", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry___deproductNameTextNode", "internal": Object { "content": "Schneebesen", "contentDigest": "2017-06-27T09:53:23.179Z", "mediaType": "text/markdown", - "type": "contentfulProductProductNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry___de", - "productName": "Schneebesen", - "sys": Object { - "type": "Entry", - }, + "raw": "Schneebesen", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry___deproductDescriptionTextNode", "internal": Object { "content": "Ein kreativer kleiner Schneebesen, der in 8 verschiedenen Farben kommt. Praktisch und nach dem Gebrauch leicht zu reinigen. Eine tolle Geschenkidee.", "contentDigest": "2017-06-27T09:53:23.179Z", "mediaType": "text/markdown", - "type": "contentfulProductProductDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry___de", - "productDescription": "Ein kreativer kleiner Schneebesen, der in 8 verschiedenen Farben kommt. Praktisch und nach dem Gebrauch leicht zu reinigen. Eine tolle Geschenkidee.", - "sys": Object { - "type": "Entry", - }, + "raw": "Ein kreativer kleiner Schneebesen, der in 8 verschiedenen Farben kommt. Praktisch und nach dem Gebrauch leicht zu reinigen. Eine tolle Geschenkidee.", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry___deproductNameTextNode", "internal": Object { "content": "SoSo wanduhr", "contentDigest": "2017-06-27T09:52:29.215Z", "mediaType": "text/markdown", - "type": "contentfulProductProductNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry___de", - "productName": "SoSo wanduhr", - "sys": Object { - "type": "Entry", - }, + "raw": "SoSo wanduhr", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry___deproductDescriptionTextNode", "internal": Object { "content": "Die neu veröffentlichte SoSo Clock von Lemnos heiratet einfaches, sauberes Design und fette, auffällige Features. Sein gesättigtes Ringelblumengesicht ist ein lebhafter Pop der Farbe zu den weißen oder grauen Wänden, aber würde auch gut mit Marine und kastanienbraun paaren. Wo die meisten Uhren am Rande der Uhr Nummern sind, bringt der SoSo sie in die Mitte und lässt einen weiten Raum zwischen den Zahlen und dem leichten Rahmen. Der Stundenzeiger bietet eine schöne Unterbrechung der schwarzen und gelben der Uhr - es ist in einem brillanten Weiß vorgestellt. Trotz seiner kräftigen Farbe und des Kontrastes behält der SoSo eine saubere, reine Ästhetik, die für eine Vielzahl von zeitgenössischen Interieurs geeignet ist.", "contentDigest": "2017-06-27T09:52:29.215Z", "mediaType": "text/markdown", - "type": "contentfulProductProductDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry___de", - "productDescription": "Die neu veröffentlichte SoSo Clock von Lemnos heiratet einfaches, sauberes Design und fette, auffällige Features. Sein gesättigtes Ringelblumengesicht ist ein lebhafter Pop der Farbe zu den weißen oder grauen Wänden, aber würde auch gut mit Marine und kastanienbraun paaren. Wo die meisten Uhren am Rande der Uhr Nummern sind, bringt der SoSo sie in die Mitte und lässt einen weiten Raum zwischen den Zahlen und dem leichten Rahmen. Der Stundenzeiger bietet eine schöne Unterbrechung der schwarzen und gelben der Uhr - es ist in einem brillanten Weiß vorgestellt. Trotz seiner kräftigen Farbe und des Kontrastes behält der SoSo eine saubere, reine Ästhetik, die für eine Vielzahl von zeitgenössischen Interieurs geeignet ist.", - "sys": Object { - "type": "Entry", - }, + "raw": "Die neu veröffentlichte SoSo Clock von Lemnos heiratet einfaches, sauberes Design und fette, auffällige Features. Sein gesättigtes Ringelblumengesicht ist ein lebhafter Pop der Farbe zu den weißen oder grauen Wänden, aber würde auch gut mit Marine und kastanienbraun paaren. Wo die meisten Uhren am Rande der Uhr Nummern sind, bringt der SoSo sie in die Mitte und lässt einen weiten Raum zwischen den Zahlen und dem leichten Rahmen. Der Stundenzeiger bietet eine schöne Unterbrechung der schwarzen und gelben der Uhr - es ist in einem brillanten Weiß vorgestellt. Trotz seiner kräftigen Farbe und des Kontrastes behält der SoSo eine saubere, reine Ästhetik, die für eine Vielzahl von zeitgenössischen Interieurs geeignet ist.", }, ], Array [ Object { - "children": Array [], "description": "just for testing JSON fields", "displayField": null, "id": "JSON-test", @@ -9608,155 +9013,119 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "type": "ContentfulContentType", }, "name": "JSON-test", - "parent": null, "sys": Object { + "environmentId": "master", + "firstPublishedAt": "2017-11-28T02:15:46.221Z", + "id": "jsonTest", + "locale": "en-US", + "publishedAt": "2018-08-13T14:21:13.985Z", + "publishedVersion": 3, + "spaceId": "rocybtov1ozk", "type": "ContentType", }, }, ], Array [ Object { - "children": Array [ - "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___EntryjsonTestJSONNode", - "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___EntryjsonStringTest0JSONNode", - ], - "contentful_id": "c71mfnH4QKsSsQmgoaQuq6O", - "createdAt": "2017-11-28T02:16:10.604Z", + "children": Array [], "id": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry", "internal": Object { "contentDigest": "2018-08-13T14:27:12.458Z", "type": "ContentfulJsonTest", }, - "jsonStringTest___NODE": Array [ - "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___EntryjsonStringTest0JSONNode", - ], - "jsonTest___NODE": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___EntryjsonTestJSONNode", - "node_locale": "en-US", - "parent": "JSON-test", - "spaceId": "rocybtov1ozk", - "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "jsonTest", - "id": "jsonTest", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 4, - "type": "Entry", - }, - "updatedAt": "2018-08-13T14:27:12.458Z", - }, - ], - Array [ - Object { - "children": Array [], - "devDependencies": Object { - "babel-cli": "^6.26.0", - "babel-eslint": "^7.2.3", - "babel-jest": "^20.0.3", - "babel-plugin-add-module-exports": "^0.2.1", - "babel-plugin-lodash": "^3.2.11", - "babel-plugin-transform-async-to-generator": "^6.24.1", - "babel-plugin-transform-flow-strip-types": "^6.22.0", - "babel-plugin-transform-runtime": "^6.23.0", - "babel-preset-env": "^1.6.0", - "babel-preset-flow": "^6.23.0", - "babel-preset-react": "^6.24.1", - "babel-preset-stage-0": "^6.24.1", - "babel-register": "^6.26.0", - "babel-runtime": "^6.26.0", - "chokidar": "^1.7.0", - "cross-env": "^5.0.5", - "eslint": "^4.5.0", - "eslint-config-google": "^0.9.1", - "eslint-config-prettier": "^2.5.0", - "eslint-plugin-flow-vars": "^0.5.0", - "eslint-plugin-flowtype": "^2.35.0", - "eslint-plugin-import": "^2.7.0", - "eslint-plugin-jsx-a11y": "^6.0.2", - "eslint-plugin-prettier": "^2.2.0", - "eslint-plugin-react": "^7.3.0", - "flow-bin": "^0.42.0", - "glob": "^7.1.1", - "jest": "^20.0.4", - "jest-cli": "^20.0.4", - "lerna": "^2.1.1", - "plop": "^1.8.1", - "prettier": "^1.7.0", - "prettier-eslint-cli": "4.2.x", - "remotedev-server": "^0.2.3", - "rimraf": "^2.6.1", - }, - "engines": Object { - "yarn": "^1.2.1", - }, - "eslintIgnore": Array [ - "interfaces", - "**/__tests__/fixtures/", - ], - "id": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___EntryjsonTestJSONNode", - "internal": Object { - "content": "{\\"engines\\":{\\"yarn\\":\\"^1.2.1\\"},\\"private\\":true,\\"scripts\\":{\\"jest\\":\\"jest\\",\\"lint\\":\\"eslint --ext .js,.jsx packages/**/src\\",\\"plop\\":\\"plop\\",\\"test\\":\\"yarn lint && yarn jest\\",\\"lerna\\":\\"lerna\\",\\"watch\\":\\"lerna run watch --no-sort --stream --concurrency 999\\",\\"format\\":\\"npm run format-packages && npm run format-cache-dir && npm run format-www && npm run format-examples && npm run format-scripts\\",\\"publish\\":\\"lerna publish\\",\\"bootstrap\\":\\"yarn && npm run check-versions && lerna run prepublish\\",\\"lint:flow\\":\\"babel-node scripts/flow-check.js\\",\\"remotedev\\":\\"remotedev --hostname=localhost --port=19999\\",\\"test_bkup\\":\\"npm run lint && npm run test-node && npm run test-integration\\",\\"format-www\\":\\"prettier-eslint --write /\\"www/*.js/\\" /\\"www/src/**/*.js/\\"\\",\\"test:watch\\":\\"jest --watch\\",\\"test:update\\":\\"jest --updateSnapshot\\",\\"publish-next\\":\\"lerna publish --npm-tag=next\\",\\"check-versions\\":\\"babel-node scripts/check-versions.js\\",\\"format-scripts\\":\\"prettier-eslint --write /\\"scripts/**/*.js/\\"\\",\\"publish-canary\\":\\"lerna publish --canary --yes\\",\\"format-examples\\":\\"prettier-eslint --write /\\"examples/**/gatsby-node.js/\\" /\\"examples/**/gatsby-config.js/\\" /\\"examples/**/src/**/*.js/\\"\\",\\"format-packages\\":\\"prettier-eslint --write /\\"packages/*/src/**/*.js/\\"\\",\\"format-cache-dir\\":\\"prettier-eslint --write /\\"packages/gatsby/cache-dir/*.js/\\"\\"},\\"workspaces\\":[\\"packages/*\\"],\\"eslintIgnore\\":[\\"interfaces\\",\\"**/__tests__/fixtures/\\"],\\"devDependencies\\":{\\"glob\\":\\"^7.1.1\\",\\"jest\\":\\"^20.0.4\\",\\"plop\\":\\"^1.8.1\\",\\"lerna\\":\\"^2.1.1\\",\\"eslint\\":\\"^4.5.0\\",\\"rimraf\\":\\"^2.6.1\\",\\"chokidar\\":\\"^1.7.0\\",\\"flow-bin\\":\\"^0.42.0\\",\\"jest-cli\\":\\"^20.0.4\\",\\"prettier\\":\\"^1.7.0\\",\\"babel-cli\\":\\"^6.26.0\\",\\"cross-env\\":\\"^5.0.5\\",\\"babel-jest\\":\\"^20.0.3\\",\\"babel-eslint\\":\\"^7.2.3\\",\\"babel-runtime\\":\\"^6.26.0\\",\\"babel-register\\":\\"^6.26.0\\",\\"babel-preset-env\\":\\"^1.6.0\\",\\"remotedev-server\\":\\"^0.2.3\\",\\"babel-preset-flow\\":\\"^6.23.0\\",\\"babel-preset-react\\":\\"^6.24.1\\",\\"babel-plugin-lodash\\":\\"^3.2.11\\",\\"eslint-plugin-react\\":\\"^7.3.0\\",\\"prettier-eslint-cli\\":\\"4.2.x\\",\\"babel-preset-stage-0\\":\\"^6.24.1\\",\\"eslint-config-google\\":\\"^0.9.1\\",\\"eslint-plugin-import\\":\\"^2.7.0\\",\\"eslint-config-prettier\\":\\"^2.5.0\\",\\"eslint-plugin-flowtype\\":\\"^2.35.0\\",\\"eslint-plugin-jsx-a11y\\":\\"^6.0.2\\",\\"eslint-plugin-prettier\\":\\"^2.2.0\\",\\"eslint-plugin-flow-vars\\":\\"^0.5.0\\",\\"babel-plugin-transform-runtime\\":\\"^6.23.0\\",\\"babel-plugin-add-module-exports\\":\\"^0.2.1\\",\\"babel-plugin-transform-flow-strip-types\\":\\"^6.22.0\\",\\"babel-plugin-transform-async-to-generator\\":\\"^6.24.1\\"}}", - "contentDigest": "2018-08-13T14:27:12.458Z", - "mediaType": "application/json", - "type": "contentfulJsonTestJsonTestJsonNode", - }, - "parent": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry", - "private": true, - "scripts": Object { - "bootstrap": "yarn && npm run check-versions && lerna run prepublish", - "check-versions": "babel-node scripts/check-versions.js", - "format": "npm run format-packages && npm run format-cache-dir && npm run format-www && npm run format-examples && npm run format-scripts", - "format-cache-dir": "prettier-eslint --write \\"packages/gatsby/cache-dir/*.js\\"", - "format-examples": "prettier-eslint --write \\"examples/**/gatsby-node.js\\" \\"examples/**/gatsby-config.js\\" \\"examples/**/src/**/*.js\\"", - "format-packages": "prettier-eslint --write \\"packages/*/src/**/*.js\\"", - "format-scripts": "prettier-eslint --write \\"scripts/**/*.js\\"", - "format-www": "prettier-eslint --write \\"www/*.js\\" \\"www/src/**/*.js\\"", - "jest": "jest", - "lerna": "lerna", - "lint": "eslint --ext .js,.jsx packages/**/src", - "lint:flow": "babel-node scripts/flow-check.js", - "plop": "plop", - "publish": "lerna publish", - "publish-canary": "lerna publish --canary --yes", - "publish-next": "lerna publish --npm-tag=next", - "remotedev": "remotedev --hostname=localhost --port=19999", - "test": "yarn lint && yarn jest", - "test:update": "jest --updateSnapshot", - "test:watch": "jest --watch", - "test_bkup": "npm run lint && npm run test-node && npm run test-integration", - "watch": "lerna run watch --no-sort --stream --concurrency 999", - }, - "sys": Object { - "type": "Entry", - }, - "workspaces": Array [ - "packages/*", - ], - }, - ], - Array [ - Object { - "children": Array [], - "content": "test", - "id": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___EntryjsonStringTest0JSONNode", - "internal": Object { - "content": "\\"test\\"", - "contentDigest": "2018-08-13T14:27:12.458Z", - "mediaType": "application/json", - "type": "contentfulJsonTestJsonStringTestJsonNode", + "jsonStringTest": Array [ + "test", + ], + "jsonTest": Object { + "devDependencies": Object { + "babel-cli": "^6.26.0", + "babel-eslint": "^7.2.3", + "babel-jest": "^20.0.3", + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-lodash": "^3.2.11", + "babel-plugin-transform-async-to-generator": "^6.24.1", + "babel-plugin-transform-flow-strip-types": "^6.22.0", + "babel-plugin-transform-runtime": "^6.23.0", + "babel-preset-env": "^1.6.0", + "babel-preset-flow": "^6.23.0", + "babel-preset-react": "^6.24.1", + "babel-preset-stage-0": "^6.24.1", + "babel-register": "^6.26.0", + "babel-runtime": "^6.26.0", + "chokidar": "^1.7.0", + "cross-env": "^5.0.5", + "eslint": "^4.5.0", + "eslint-config-google": "^0.9.1", + "eslint-config-prettier": "^2.5.0", + "eslint-plugin-flow-vars": "^0.5.0", + "eslint-plugin-flowtype": "^2.35.0", + "eslint-plugin-import": "^2.7.0", + "eslint-plugin-jsx-a11y": "^6.0.2", + "eslint-plugin-prettier": "^2.2.0", + "eslint-plugin-react": "^7.3.0", + "flow-bin": "^0.42.0", + "glob": "^7.1.1", + "jest": "^20.0.4", + "jest-cli": "^20.0.4", + "lerna": "^2.1.1", + "plop": "^1.8.1", + "prettier": "^1.7.0", + "prettier-eslint-cli": "4.2.x", + "remotedev-server": "^0.2.3", + "rimraf": "^2.6.1", + }, + "engines": Object { + "yarn": "^1.2.1", + }, + "eslintIgnore": Array [ + "interfaces", + "**/__tests__/fixtures/", + ], + "private": true, + "scripts": Object { + "bootstrap": "yarn && npm run check-versions && lerna run prepublish", + "check-versions": "babel-node scripts/check-versions.js", + "format": "npm run format-packages && npm run format-cache-dir && npm run format-www && npm run format-examples && npm run format-scripts", + "format-cache-dir": "prettier-eslint --write \\"packages/gatsby/cache-dir/*.js\\"", + "format-examples": "prettier-eslint --write \\"examples/**/gatsby-node.js\\" \\"examples/**/gatsby-config.js\\" \\"examples/**/src/**/*.js\\"", + "format-packages": "prettier-eslint --write \\"packages/*/src/**/*.js\\"", + "format-scripts": "prettier-eslint --write \\"scripts/**/*.js\\"", + "format-www": "prettier-eslint --write \\"www/*.js\\" \\"www/src/**/*.js\\"", + "jest": "jest", + "lerna": "lerna", + "lint": "eslint --ext .js,.jsx packages/**/src", + "lint:flow": "babel-node scripts/flow-check.js", + "plop": "plop", + "publish": "lerna publish", + "publish-canary": "lerna publish --canary --yes", + "publish-next": "lerna publish --npm-tag=next", + "remotedev": "remotedev --hostname=localhost --port=19999", + "test": "yarn lint && yarn jest", + "test:update": "jest --updateSnapshot", + "test:watch": "jest --watch", + "test_bkup": "npm run lint && npm run test-node && npm run test-integration", + "watch": "lerna run watch --no-sort --stream --concurrency 999", + }, + "workspaces": Array [ + "packages/*", + ], }, - "parent": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry", + "parent": "JSON-test", "sys": Object { + "contentType___NODE": "JSON-test", + "environmentId": "master", + "firstPublishedAt": "2017-11-28T02:16:10.604Z", + "id": "c71mfnH4QKsSsQmgoaQuq6O", + "locale": "en-US", + "publishedAt": "2018-08-13T14:27:12.458Z", + "publishedVersion": 4, + "spaceId": "rocybtov1ozk", "type": "Entry", }, }, ], Array [ Object { - "children": Array [], "description": "just for testing JSON fields", "displayField": null, "id": "JSON-test", @@ -9765,155 +9134,119 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "type": "ContentfulContentType", }, "name": "JSON-test", - "parent": null, "sys": Object { + "environmentId": "master", + "firstPublishedAt": "2017-11-28T02:15:46.221Z", + "id": "jsonTest", + "locale": "de", + "publishedAt": "2018-08-13T14:21:13.985Z", + "publishedVersion": 3, + "spaceId": "rocybtov1ozk", "type": "ContentType", }, }, ], Array [ Object { - "children": Array [ - "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry___dejsonTestJSONNode", - "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry___dejsonStringTest0JSONNode", - ], - "contentful_id": "c71mfnH4QKsSsQmgoaQuq6O", - "createdAt": "2017-11-28T02:16:10.604Z", + "children": Array [], "id": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry___de", "internal": Object { "contentDigest": "2018-08-13T14:27:12.458Z", "type": "ContentfulJsonTest", }, - "jsonStringTest___NODE": Array [ - "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry___dejsonStringTest0JSONNode", - ], - "jsonTest___NODE": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry___dejsonTestJSONNode", - "node_locale": "de", - "parent": "JSON-test", - "spaceId": "rocybtov1ozk", - "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "jsonTest", - "id": "jsonTest", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 4, - "type": "Entry", - }, - "updatedAt": "2018-08-13T14:27:12.458Z", - }, - ], - Array [ - Object { - "children": Array [], - "devDependencies": Object { - "babel-cli": "^6.26.0", - "babel-eslint": "^7.2.3", - "babel-jest": "^20.0.3", - "babel-plugin-add-module-exports": "^0.2.1", - "babel-plugin-lodash": "^3.2.11", - "babel-plugin-transform-async-to-generator": "^6.24.1", - "babel-plugin-transform-flow-strip-types": "^6.22.0", - "babel-plugin-transform-runtime": "^6.23.0", - "babel-preset-env": "^1.6.0", - "babel-preset-flow": "^6.23.0", - "babel-preset-react": "^6.24.1", - "babel-preset-stage-0": "^6.24.1", - "babel-register": "^6.26.0", - "babel-runtime": "^6.26.0", - "chokidar": "^1.7.0", - "cross-env": "^5.0.5", - "eslint": "^4.5.0", - "eslint-config-google": "^0.9.1", - "eslint-config-prettier": "^2.5.0", - "eslint-plugin-flow-vars": "^0.5.0", - "eslint-plugin-flowtype": "^2.35.0", - "eslint-plugin-import": "^2.7.0", - "eslint-plugin-jsx-a11y": "^6.0.2", - "eslint-plugin-prettier": "^2.2.0", - "eslint-plugin-react": "^7.3.0", - "flow-bin": "^0.42.0", - "glob": "^7.1.1", - "jest": "^20.0.4", - "jest-cli": "^20.0.4", - "lerna": "^2.1.1", - "plop": "^1.8.1", - "prettier": "^1.7.0", - "prettier-eslint-cli": "4.2.x", - "remotedev-server": "^0.2.3", - "rimraf": "^2.6.1", - }, - "engines": Object { - "yarn": "^1.2.1", - }, - "eslintIgnore": Array [ - "interfaces", - "**/__tests__/fixtures/", - ], - "id": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry___dejsonTestJSONNode", - "internal": Object { - "content": "{\\"engines\\":{\\"yarn\\":\\"^1.2.1\\"},\\"private\\":true,\\"scripts\\":{\\"jest\\":\\"jest\\",\\"lint\\":\\"eslint --ext .js,.jsx packages/**/src\\",\\"plop\\":\\"plop\\",\\"test\\":\\"yarn lint && yarn jest\\",\\"lerna\\":\\"lerna\\",\\"watch\\":\\"lerna run watch --no-sort --stream --concurrency 999\\",\\"format\\":\\"npm run format-packages && npm run format-cache-dir && npm run format-www && npm run format-examples && npm run format-scripts\\",\\"publish\\":\\"lerna publish\\",\\"bootstrap\\":\\"yarn && npm run check-versions && lerna run prepublish\\",\\"lint:flow\\":\\"babel-node scripts/flow-check.js\\",\\"remotedev\\":\\"remotedev --hostname=localhost --port=19999\\",\\"test_bkup\\":\\"npm run lint && npm run test-node && npm run test-integration\\",\\"format-www\\":\\"prettier-eslint --write /\\"www/*.js/\\" /\\"www/src/**/*.js/\\"\\",\\"test:watch\\":\\"jest --watch\\",\\"test:update\\":\\"jest --updateSnapshot\\",\\"publish-next\\":\\"lerna publish --npm-tag=next\\",\\"check-versions\\":\\"babel-node scripts/check-versions.js\\",\\"format-scripts\\":\\"prettier-eslint --write /\\"scripts/**/*.js/\\"\\",\\"publish-canary\\":\\"lerna publish --canary --yes\\",\\"format-examples\\":\\"prettier-eslint --write /\\"examples/**/gatsby-node.js/\\" /\\"examples/**/gatsby-config.js/\\" /\\"examples/**/src/**/*.js/\\"\\",\\"format-packages\\":\\"prettier-eslint --write /\\"packages/*/src/**/*.js/\\"\\",\\"format-cache-dir\\":\\"prettier-eslint --write /\\"packages/gatsby/cache-dir/*.js/\\"\\"},\\"workspaces\\":[\\"packages/*\\"],\\"eslintIgnore\\":[\\"interfaces\\",\\"**/__tests__/fixtures/\\"],\\"devDependencies\\":{\\"glob\\":\\"^7.1.1\\",\\"jest\\":\\"^20.0.4\\",\\"plop\\":\\"^1.8.1\\",\\"lerna\\":\\"^2.1.1\\",\\"eslint\\":\\"^4.5.0\\",\\"rimraf\\":\\"^2.6.1\\",\\"chokidar\\":\\"^1.7.0\\",\\"flow-bin\\":\\"^0.42.0\\",\\"jest-cli\\":\\"^20.0.4\\",\\"prettier\\":\\"^1.7.0\\",\\"babel-cli\\":\\"^6.26.0\\",\\"cross-env\\":\\"^5.0.5\\",\\"babel-jest\\":\\"^20.0.3\\",\\"babel-eslint\\":\\"^7.2.3\\",\\"babel-runtime\\":\\"^6.26.0\\",\\"babel-register\\":\\"^6.26.0\\",\\"babel-preset-env\\":\\"^1.6.0\\",\\"remotedev-server\\":\\"^0.2.3\\",\\"babel-preset-flow\\":\\"^6.23.0\\",\\"babel-preset-react\\":\\"^6.24.1\\",\\"babel-plugin-lodash\\":\\"^3.2.11\\",\\"eslint-plugin-react\\":\\"^7.3.0\\",\\"prettier-eslint-cli\\":\\"4.2.x\\",\\"babel-preset-stage-0\\":\\"^6.24.1\\",\\"eslint-config-google\\":\\"^0.9.1\\",\\"eslint-plugin-import\\":\\"^2.7.0\\",\\"eslint-config-prettier\\":\\"^2.5.0\\",\\"eslint-plugin-flowtype\\":\\"^2.35.0\\",\\"eslint-plugin-jsx-a11y\\":\\"^6.0.2\\",\\"eslint-plugin-prettier\\":\\"^2.2.0\\",\\"eslint-plugin-flow-vars\\":\\"^0.5.0\\",\\"babel-plugin-transform-runtime\\":\\"^6.23.0\\",\\"babel-plugin-add-module-exports\\":\\"^0.2.1\\",\\"babel-plugin-transform-flow-strip-types\\":\\"^6.22.0\\",\\"babel-plugin-transform-async-to-generator\\":\\"^6.24.1\\"}}", - "contentDigest": "2018-08-13T14:27:12.458Z", - "mediaType": "application/json", - "type": "contentfulJsonTestJsonTestJsonNode", - }, - "parent": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry___de", - "private": true, - "scripts": Object { - "bootstrap": "yarn && npm run check-versions && lerna run prepublish", - "check-versions": "babel-node scripts/check-versions.js", - "format": "npm run format-packages && npm run format-cache-dir && npm run format-www && npm run format-examples && npm run format-scripts", - "format-cache-dir": "prettier-eslint --write \\"packages/gatsby/cache-dir/*.js\\"", - "format-examples": "prettier-eslint --write \\"examples/**/gatsby-node.js\\" \\"examples/**/gatsby-config.js\\" \\"examples/**/src/**/*.js\\"", - "format-packages": "prettier-eslint --write \\"packages/*/src/**/*.js\\"", - "format-scripts": "prettier-eslint --write \\"scripts/**/*.js\\"", - "format-www": "prettier-eslint --write \\"www/*.js\\" \\"www/src/**/*.js\\"", - "jest": "jest", - "lerna": "lerna", - "lint": "eslint --ext .js,.jsx packages/**/src", - "lint:flow": "babel-node scripts/flow-check.js", - "plop": "plop", - "publish": "lerna publish", - "publish-canary": "lerna publish --canary --yes", - "publish-next": "lerna publish --npm-tag=next", - "remotedev": "remotedev --hostname=localhost --port=19999", - "test": "yarn lint && yarn jest", - "test:update": "jest --updateSnapshot", - "test:watch": "jest --watch", - "test_bkup": "npm run lint && npm run test-node && npm run test-integration", - "watch": "lerna run watch --no-sort --stream --concurrency 999", - }, - "sys": Object { - "type": "Entry", - }, - "workspaces": Array [ - "packages/*", - ], - }, - ], - Array [ - Object { - "children": Array [], - "content": "test", - "id": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry___dejsonStringTest0JSONNode", - "internal": Object { - "content": "\\"test\\"", - "contentDigest": "2018-08-13T14:27:12.458Z", - "mediaType": "application/json", - "type": "contentfulJsonTestJsonStringTestJsonNode", + "jsonStringTest": Array [ + "test", + ], + "jsonTest": Object { + "devDependencies": Object { + "babel-cli": "^6.26.0", + "babel-eslint": "^7.2.3", + "babel-jest": "^20.0.3", + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-lodash": "^3.2.11", + "babel-plugin-transform-async-to-generator": "^6.24.1", + "babel-plugin-transform-flow-strip-types": "^6.22.0", + "babel-plugin-transform-runtime": "^6.23.0", + "babel-preset-env": "^1.6.0", + "babel-preset-flow": "^6.23.0", + "babel-preset-react": "^6.24.1", + "babel-preset-stage-0": "^6.24.1", + "babel-register": "^6.26.0", + "babel-runtime": "^6.26.0", + "chokidar": "^1.7.0", + "cross-env": "^5.0.5", + "eslint": "^4.5.0", + "eslint-config-google": "^0.9.1", + "eslint-config-prettier": "^2.5.0", + "eslint-plugin-flow-vars": "^0.5.0", + "eslint-plugin-flowtype": "^2.35.0", + "eslint-plugin-import": "^2.7.0", + "eslint-plugin-jsx-a11y": "^6.0.2", + "eslint-plugin-prettier": "^2.2.0", + "eslint-plugin-react": "^7.3.0", + "flow-bin": "^0.42.0", + "glob": "^7.1.1", + "jest": "^20.0.4", + "jest-cli": "^20.0.4", + "lerna": "^2.1.1", + "plop": "^1.8.1", + "prettier": "^1.7.0", + "prettier-eslint-cli": "4.2.x", + "remotedev-server": "^0.2.3", + "rimraf": "^2.6.1", + }, + "engines": Object { + "yarn": "^1.2.1", + }, + "eslintIgnore": Array [ + "interfaces", + "**/__tests__/fixtures/", + ], + "private": true, + "scripts": Object { + "bootstrap": "yarn && npm run check-versions && lerna run prepublish", + "check-versions": "babel-node scripts/check-versions.js", + "format": "npm run format-packages && npm run format-cache-dir && npm run format-www && npm run format-examples && npm run format-scripts", + "format-cache-dir": "prettier-eslint --write \\"packages/gatsby/cache-dir/*.js\\"", + "format-examples": "prettier-eslint --write \\"examples/**/gatsby-node.js\\" \\"examples/**/gatsby-config.js\\" \\"examples/**/src/**/*.js\\"", + "format-packages": "prettier-eslint --write \\"packages/*/src/**/*.js\\"", + "format-scripts": "prettier-eslint --write \\"scripts/**/*.js\\"", + "format-www": "prettier-eslint --write \\"www/*.js\\" \\"www/src/**/*.js\\"", + "jest": "jest", + "lerna": "lerna", + "lint": "eslint --ext .js,.jsx packages/**/src", + "lint:flow": "babel-node scripts/flow-check.js", + "plop": "plop", + "publish": "lerna publish", + "publish-canary": "lerna publish --canary --yes", + "publish-next": "lerna publish --npm-tag=next", + "remotedev": "remotedev --hostname=localhost --port=19999", + "test": "yarn lint && yarn jest", + "test:update": "jest --updateSnapshot", + "test:watch": "jest --watch", + "test_bkup": "npm run lint && npm run test-node && npm run test-integration", + "watch": "lerna run watch --no-sort --stream --concurrency 999", + }, + "workspaces": Array [ + "packages/*", + ], }, - "parent": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry___de", + "parent": "JSON-test", "sys": Object { + "contentType___NODE": "JSON-test", + "environmentId": "master", + "firstPublishedAt": "2017-11-28T02:16:10.604Z", + "id": "c71mfnH4QKsSsQmgoaQuq6O", + "locale": "de", + "publishedAt": "2018-08-13T14:27:12.458Z", + "publishedVersion": 4, + "spaceId": "rocybtov1ozk", "type": "Entry", }, }, ], Array [ Object { - "children": Array [], "description": "", "displayField": "title", "id": "Remark Test", @@ -9922,48 +9255,47 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "type": "ContentfulContentType", }, "name": "Remark Test", - "parent": null, "sys": Object { + "environmentId": "master", + "firstPublishedAt": "2018-05-28T08:43:09.218Z", + "id": "remarkTest", + "locale": "en-US", + "publishedAt": "2018-05-28T08:43:09.218Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "ContentType", }, }, ], Array [ Object { - "children": Array [ - "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___EntrycontentTextNode", - ], + "children": Array [], "content___NODE": "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___EntrycontentTextNode", - "contentful_id": "c4L2GhTsJtCseMYM8Wia64i", - "createdAt": "2018-05-28T08:49:06.230Z", "id": "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___Entry", "internal": Object { "contentDigest": "2018-05-28T08:49:06.230Z", "type": "ContentfulRemarkTest", }, - "node_locale": "en-US", "parent": "Remark Test", - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "remarkTest", - "id": "remarkTest", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 1, + "contentType___NODE": "Remark Test", + "environmentId": "master", + "firstPublishedAt": "2018-05-28T08:49:06.230Z", + "id": "c4L2GhTsJtCseMYM8Wia64i", + "locale": "en-US", + "publishedAt": "2018-05-28T08:49:06.230Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "title": "Contentful images inlined in Markdown", - "updatedAt": "2018-05-28T08:49:06.230Z", }, ], Array [ Object { - "children": Array [], - "content": "## Toys + "id": "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___EntrycontentTextNode", + "internal": Object { + "content": "## Toys ![Toys](//images.ctfassets.net/rocybtov1ozk/6t4HKjytPi0mYgs240wkG/6e730b1e6c2a46929239019240c037e6/toys_512pxGREY.png) @@ -9986,9 +9318,12 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff ## Hudson Wall Cup ![Hudson Wall Cup ](//images.ctfassets.net/rocybtov1ozk/Xc0ny7GWsMEMCeASWO2um/af8e29320c04af689798afe96e2345c7/jqvtazcyfwseah9fmysz.jpg)", - "id": "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___EntrycontentTextNode", - "internal": Object { - "content": "## Toys + "contentDigest": "2018-05-28T08:49:06.230Z", + "mediaType": "text/markdown", + "type": "ContentfulNodeTypeText", + }, + "parent": "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___Entry", + "raw": "## Toys ![Toys](//images.ctfassets.net/rocybtov1ozk/6t4HKjytPi0mYgs240wkG/6e730b1e6c2a46929239019240c037e6/toys_512pxGREY.png) @@ -10011,19 +9346,10 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff ## Hudson Wall Cup ![Hudson Wall Cup ](//images.ctfassets.net/rocybtov1ozk/Xc0ny7GWsMEMCeASWO2um/af8e29320c04af689798afe96e2345c7/jqvtazcyfwseah9fmysz.jpg)", - "contentDigest": "2018-05-28T08:49:06.230Z", - "mediaType": "text/markdown", - "type": "contentfulRemarkTestContentTextNode", - }, - "parent": "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___Entry", - "sys": Object { - "type": "Entry", - }, }, ], Array [ Object { - "children": Array [], "description": "", "displayField": "title", "id": "Remark Test", @@ -10032,48 +9358,47 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "type": "ContentfulContentType", }, "name": "Remark Test", - "parent": null, "sys": Object { + "environmentId": "master", + "firstPublishedAt": "2018-05-28T08:43:09.218Z", + "id": "remarkTest", + "locale": "de", + "publishedAt": "2018-05-28T08:43:09.218Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "ContentType", }, }, ], Array [ Object { - "children": Array [ - "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___Entry___decontentTextNode", - ], + "children": Array [], "content___NODE": "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___Entry___decontentTextNode", - "contentful_id": "c4L2GhTsJtCseMYM8Wia64i", - "createdAt": "2018-05-28T08:49:06.230Z", "id": "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___Entry___de", "internal": Object { "contentDigest": "2018-05-28T08:49:06.230Z", "type": "ContentfulRemarkTest", }, - "node_locale": "de", "parent": "Remark Test", - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "remarkTest", - "id": "remarkTest", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 1, + "contentType___NODE": "Remark Test", + "environmentId": "master", + "firstPublishedAt": "2018-05-28T08:49:06.230Z", + "id": "c4L2GhTsJtCseMYM8Wia64i", + "locale": "de", + "publishedAt": "2018-05-28T08:49:06.230Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "title": "Contentful images inlined in Markdown", - "updatedAt": "2018-05-28T08:49:06.230Z", }, ], Array [ Object { - "children": Array [], - "content": "## Toys + "id": "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___Entry___decontentTextNode", + "internal": Object { + "content": "## Toys ![Toys](//images.ctfassets.net/rocybtov1ozk/6t4HKjytPi0mYgs240wkG/6e730b1e6c2a46929239019240c037e6/toys_512pxGREY.png) @@ -10096,9 +9421,12 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff ## Hudson Wall Cup ![Hudson Wall Cup ](//images.ctfassets.net/rocybtov1ozk/Xc0ny7GWsMEMCeASWO2um/af8e29320c04af689798afe96e2345c7/jqvtazcyfwseah9fmysz.jpg)", - "id": "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___Entry___decontentTextNode", - "internal": Object { - "content": "## Toys + "contentDigest": "2018-05-28T08:49:06.230Z", + "mediaType": "text/markdown", + "type": "ContentfulNodeTypeText", + }, + "parent": "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___Entry___de", + "raw": "## Toys ![Toys](//images.ctfassets.net/rocybtov1ozk/6t4HKjytPi0mYgs240wkG/6e730b1e6c2a46929239019240c037e6/toys_512pxGREY.png) @@ -10121,14 +9449,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff ## Hudson Wall Cup ![Hudson Wall Cup ](//images.ctfassets.net/rocybtov1ozk/Xc0ny7GWsMEMCeASWO2um/af8e29320c04af689798afe96e2345c7/jqvtazcyfwseah9fmysz.jpg)", - "contentDigest": "2018-05-28T08:49:06.230Z", - "mediaType": "text/markdown", - "type": "contentfulRemarkTestContentTextNode", - }, - "parent": "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___Entry___de", - "sys": Object { - "type": "Entry", - }, }, ], ] @@ -10139,8 +9459,6 @@ Array [ Array [ Object { "children": Array [], - "contentful_id": "c3wtvPBbBjiMKqKKga8I2Cu", - "createdAt": "2017-06-27T09:35:37.178Z", "description": "Brand logo", "file": Object { "contentType": "image/jpeg", @@ -10159,22 +9477,23 @@ Array [ "contentDigest": "2017-06-27T09:35:37.178Z", "type": "ContentfulAsset", }, - "node_locale": "en-US", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:37.178Z", + "id": "c3wtvPBbBjiMKqKKga8I2Cu", + "locale": "en-US", + "publishedAt": "2017-06-27T09:35:37.178Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Normann Copenhagen", - "updatedAt": "2017-06-27T09:35:37.178Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c3wtvPBbBjiMKqKKga8I2Cu", - "createdAt": "2017-06-27T09:35:37.178Z", "description": "Brand logo", "file": Object { "contentType": "image/jpeg", @@ -10193,22 +9512,23 @@ Array [ "contentDigest": "2017-06-27T09:35:37.178Z", "type": "ContentfulAsset", }, - "node_locale": "de", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:37.178Z", + "id": "c3wtvPBbBjiMKqKKga8I2Cu", + "locale": "de", + "publishedAt": "2017-06-27T09:35:37.178Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Normann Copenhagen", - "updatedAt": "2017-06-27T09:35:37.178Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "KTRF62Q4gg60q6WCsWKw8", - "createdAt": "2017-06-27T09:35:37.064Z", "description": "by Lemnos", "file": Object { "contentType": "image/jpeg", @@ -10227,22 +9547,23 @@ Array [ "contentDigest": "2017-06-27T09:35:37.064Z", "type": "ContentfulAsset", }, - "node_locale": "en-US", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:37.064Z", + "id": "KTRF62Q4gg60q6WCsWKw8", + "locale": "en-US", + "publishedAt": "2017-06-27T09:35:37.064Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "SoSo Wall Clock", - "updatedAt": "2017-06-27T09:35:37.064Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "KTRF62Q4gg60q6WCsWKw8", - "createdAt": "2017-06-27T09:35:37.064Z", "description": "by Lemnos", "file": Object { "contentType": "image/jpeg", @@ -10261,22 +9582,23 @@ Array [ "contentDigest": "2017-06-27T09:35:37.064Z", "type": "ContentfulAsset", }, - "node_locale": "de", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:37.064Z", + "id": "KTRF62Q4gg60q6WCsWKw8", + "locale": "de", + "publishedAt": "2017-06-27T09:35:37.064Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "SoSo Wall Clock", - "updatedAt": "2017-06-27T09:35:37.064Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "Xc0ny7GWsMEMCeASWO2um", - "createdAt": "2017-06-27T09:35:37.027Z", "description": "Merchandise image", "file": Object { "contentType": "image/jpeg", @@ -10295,22 +9617,23 @@ Array [ "contentDigest": "2017-06-27T09:35:37.027Z", "type": "ContentfulAsset", }, - "node_locale": "en-US", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:37.027Z", + "id": "Xc0ny7GWsMEMCeASWO2um", + "locale": "en-US", + "publishedAt": "2017-06-27T09:35:37.027Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Hudson Wall Cup ", - "updatedAt": "2017-06-27T09:35:37.027Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "Xc0ny7GWsMEMCeASWO2um", - "createdAt": "2017-06-27T09:35:37.027Z", "description": "Merchandise image", "file": Object { "contentType": "image/jpeg", @@ -10329,22 +9652,23 @@ Array [ "contentDigest": "2017-06-27T09:35:37.027Z", "type": "ContentfulAsset", }, - "node_locale": "de", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:37.027Z", + "id": "Xc0ny7GWsMEMCeASWO2um", + "locale": "de", + "publishedAt": "2017-06-27T09:35:37.027Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Hudson Wall Cup ", - "updatedAt": "2017-06-27T09:35:37.027Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c2Y8LhXLnYAYqKCGEWG4EKI", - "createdAt": "2017-06-27T09:35:37.012Z", "description": "company logo", "file": Object { "contentType": "image/jpeg", @@ -10363,22 +9687,23 @@ Array [ "contentDigest": "2017-06-27T09:35:37.012Z", "type": "ContentfulAsset", }, - "node_locale": "en-US", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:37.012Z", + "id": "c2Y8LhXLnYAYqKCGEWG4EKI", + "locale": "en-US", + "publishedAt": "2017-06-27T09:35:37.012Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Lemnos", - "updatedAt": "2017-06-27T09:35:37.012Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c2Y8LhXLnYAYqKCGEWG4EKI", - "createdAt": "2017-06-27T09:35:37.012Z", "description": "company logo", "file": Object { "contentType": "image/jpeg", @@ -10397,22 +9722,23 @@ Array [ "contentDigest": "2017-06-27T09:35:37.012Z", "type": "ContentfulAsset", }, - "node_locale": "de", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:37.012Z", + "id": "c2Y8LhXLnYAYqKCGEWG4EKI", + "locale": "de", + "publishedAt": "2017-06-27T09:35:37.012Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Lemnos", - "updatedAt": "2017-06-27T09:35:37.012Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c6t4HKjytPi0mYgs240wkG", - "createdAt": "2017-06-27T09:35:36.633Z", "description": "Category icon set", "file": Object { "contentType": "image/png", @@ -10431,22 +9757,23 @@ Array [ "contentDigest": "2017-06-27T09:35:36.633Z", "type": "ContentfulAsset", }, - "node_locale": "en-US", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:36.633Z", + "id": "c6t4HKjytPi0mYgs240wkG", + "locale": "en-US", + "publishedAt": "2017-06-27T09:35:36.633Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Toys", - "updatedAt": "2017-06-27T09:35:36.633Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c6t4HKjytPi0mYgs240wkG", - "createdAt": "2017-06-27T09:35:36.633Z", "description": "Category icon set", "file": Object { "contentType": "image/png", @@ -10465,22 +9792,23 @@ Array [ "contentDigest": "2017-06-27T09:35:36.633Z", "type": "ContentfulAsset", }, - "node_locale": "de", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:36.633Z", + "id": "c6t4HKjytPi0mYgs240wkG", + "locale": "de", + "publishedAt": "2017-06-27T09:35:36.633Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Toys", - "updatedAt": "2017-06-27T09:35:36.633Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c1MgbdJNTsMWKI0W68oYqkU", - "createdAt": "2017-06-27T09:35:36.182Z", "description": "Brand logo", "file": Object { "contentType": "image/jpeg", @@ -10499,22 +9827,23 @@ Array [ "contentDigest": "2017-06-27T09:35:36.182Z", "type": "ContentfulAsset", }, - "node_locale": "en-US", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:36.182Z", + "id": "c1MgbdJNTsMWKI0W68oYqkU", + "locale": "en-US", + "publishedAt": "2017-06-27T09:35:36.182Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Chive logo", - "updatedAt": "2017-06-27T09:35:36.182Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c1MgbdJNTsMWKI0W68oYqkU", - "createdAt": "2017-06-27T09:35:36.182Z", "description": "Brand logo", "file": Object { "contentType": "image/jpeg", @@ -10533,22 +9862,23 @@ Array [ "contentDigest": "2017-06-27T09:35:36.182Z", "type": "ContentfulAsset", }, - "node_locale": "de", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:36.182Z", + "id": "c1MgbdJNTsMWKI0W68oYqkU", + "locale": "de", + "publishedAt": "2017-06-27T09:35:36.182Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Chive logo", - "updatedAt": "2017-06-27T09:35:36.182Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c6m5AJ9vMPKc8OUoQeoCS4o", - "createdAt": "2017-06-27T09:35:36.172Z", "description": "category icon", "file": Object { "contentType": "image/png", @@ -10567,22 +9897,23 @@ Array [ "contentDigest": "2017-06-27T09:35:36.172Z", "type": "ContentfulAsset", }, - "node_locale": "en-US", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:36.172Z", + "id": "c6m5AJ9vMPKc8OUoQeoCS4o", + "locale": "en-US", + "publishedAt": "2017-06-27T09:35:36.172Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Home and Kitchen", - "updatedAt": "2017-06-27T09:35:36.172Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c6m5AJ9vMPKc8OUoQeoCS4o", - "createdAt": "2017-06-27T09:35:36.172Z", "description": "category icon", "file": Object { "contentType": "image/png", @@ -10601,22 +9932,23 @@ Array [ "contentDigest": "2017-06-27T09:35:36.172Z", "type": "ContentfulAsset", }, - "node_locale": "de", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:36.172Z", + "id": "c6m5AJ9vMPKc8OUoQeoCS4o", + "locale": "de", + "publishedAt": "2017-06-27T09:35:36.172Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Home and Kitchen", - "updatedAt": "2017-06-27T09:35:36.172Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c4zj1ZOfHgQ8oqgaSKm4Qo2", - "createdAt": "2017-06-27T09:35:36.168Z", "description": "Brand logo", "file": Object { "contentType": "image/jpeg", @@ -10635,22 +9967,23 @@ Array [ "contentDigest": "2017-06-27T09:35:36.168Z", "type": "ContentfulAsset", }, - "node_locale": "en-US", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:36.168Z", + "id": "c4zj1ZOfHgQ8oqgaSKm4Qo2", + "locale": "en-US", + "publishedAt": "2017-06-27T09:35:36.168Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Playsam", - "updatedAt": "2017-06-27T09:35:36.168Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c4zj1ZOfHgQ8oqgaSKm4Qo2", - "createdAt": "2017-06-27T09:35:36.168Z", "description": "Brand logo", "file": Object { "contentType": "image/jpeg", @@ -10669,22 +10002,23 @@ Array [ "contentDigest": "2017-06-27T09:35:36.168Z", "type": "ContentfulAsset", }, - "node_locale": "de", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:36.168Z", + "id": "c4zj1ZOfHgQ8oqgaSKm4Qo2", + "locale": "de", + "publishedAt": "2017-06-27T09:35:36.168Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Playsam", - "updatedAt": "2017-06-27T09:35:36.168Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "wtrHxeu3zEoEce2MokCSi", - "createdAt": "2017-06-27T09:35:36.037Z", "description": "Merchandise photo", "file": Object { "contentType": "image/jpeg", @@ -10703,22 +10037,23 @@ Array [ "contentDigest": "2017-06-27T09:35:36.037Z", "type": "ContentfulAsset", }, - "node_locale": "en-US", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:36.037Z", + "id": "wtrHxeu3zEoEce2MokCSi", + "locale": "en-US", + "publishedAt": "2017-06-27T09:35:36.037Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Playsam Streamliner", - "updatedAt": "2017-06-27T09:35:36.037Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "wtrHxeu3zEoEce2MokCSi", - "createdAt": "2017-06-27T09:35:36.037Z", "description": "Merchandise photo", "file": Object { "contentType": "image/jpeg", @@ -10737,22 +10072,23 @@ Array [ "contentDigest": "2017-06-27T09:35:36.037Z", "type": "ContentfulAsset", }, - "node_locale": "de", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:36.037Z", + "id": "wtrHxeu3zEoEce2MokCSi", + "locale": "de", + "publishedAt": "2017-06-27T09:35:36.037Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Playsam Streamliner", - "updatedAt": "2017-06-27T09:35:36.037Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c10TkaLheGeQG6qQGqWYqUI", - "createdAt": "2017-06-27T09:35:36.032Z", "description": "Merchandise photo", "file": Object { "contentType": "image/jpeg", @@ -10771,22 +10107,23 @@ Array [ "contentDigest": "2017-06-27T09:35:36.032Z", "type": "ContentfulAsset", }, - "node_locale": "en-US", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:36.032Z", + "id": "c10TkaLheGeQG6qQGqWYqUI", + "locale": "en-US", + "publishedAt": "2017-06-27T09:35:36.032Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Whisk beaters", - "updatedAt": "2017-06-27T09:35:36.032Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c10TkaLheGeQG6qQGqWYqUI", - "createdAt": "2017-06-27T09:35:36.032Z", "description": "Merchandise photo", "file": Object { "contentType": "image/jpeg", @@ -10805,22 +10142,23 @@ Array [ "contentDigest": "2017-06-27T09:35:36.032Z", "type": "ContentfulAsset", }, - "node_locale": "de", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:36.032Z", + "id": "c10TkaLheGeQG6qQGqWYqUI", + "locale": "de", + "publishedAt": "2017-06-27T09:35:36.032Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Whisk beaters", - "updatedAt": "2017-06-27T09:35:36.032Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c6s3iG2OVmoUcosmA8ocqsG", - "createdAt": "2017-06-27T09:35:35.994Z", "description": "Category icon set", "file": Object { "contentType": "image/png", @@ -10839,22 +10177,23 @@ Array [ "contentDigest": "2017-06-27T09:35:35.994Z", "type": "ContentfulAsset", }, - "node_locale": "en-US", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:35.994Z", + "id": "c6s3iG2OVmoUcosmA8ocqsG", + "locale": "en-US", + "publishedAt": "2017-06-27T09:35:35.994Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "House icon", - "updatedAt": "2017-06-27T09:35:35.994Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c6s3iG2OVmoUcosmA8ocqsG", - "createdAt": "2017-06-27T09:35:35.994Z", "description": "Category icon set", "file": Object { "contentType": "image/png", @@ -10873,15 +10212,18 @@ Array [ "contentDigest": "2017-06-27T09:35:35.994Z", "type": "ContentfulAsset", }, - "node_locale": "de", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:35.994Z", + "id": "c6s3iG2OVmoUcosmA8ocqsG", + "locale": "de", + "publishedAt": "2017-06-27T09:35:35.994Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "House icon", - "updatedAt": "2017-06-27T09:35:35.994Z", }, ], ] @@ -10891,7 +10233,6 @@ exports[`Process existing mutated nodes in warm build creates nodes for each ent Array [ Array [ Object { - "children": Array [], "description": null, "displayField": "title", "id": "Category", @@ -10900,8 +10241,14 @@ Array [ "type": "ContentfulContentType", }, "name": "Category", - "parent": null, "sys": Object { + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:31.492Z", + "id": "c6XwpTaSiiI2Ak2Ww0oi6qa", + "locale": "en-US", + "publishedAt": "2017-06-27T09:40:52.685Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "ContentType", }, }, @@ -10909,150 +10256,115 @@ Array [ Array [ Object { "categoryDescription___NODE": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___EntrycategoryDescriptionTextNode", - "children": Array [ - "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___EntrytitleTextNode", - "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___EntrycategoryDescriptionTextNode", - ], - "contentful_id": "c7LAnCobuuWYSqks6wAwY2a", - "createdAt": "2017-06-27T09:35:44.000Z", + "children": Array [], "icon___NODE": "rocybtov1ozk___c6m5AJ9vMPKc8OUoQeoCS4o___Asset", "id": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry", "internal": Object { "contentDigest": "2020-06-30T11:22:54.201Z", "type": "ContentfulCategory", }, - "node_locale": "en-US", "parent": "Category", "product___NODE": Array [ "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry", "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry", "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry", ], - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "6XwpTaSiiI2Ak2Ww0oi6qa", - "id": "c6XwpTaSiiI2Ak2Ww0oi6qa", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 4, + "contentType___NODE": "Category", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.000Z", + "id": "c7LAnCobuuWYSqks6wAwY2a", + "locale": "en-US", + "publishedAt": "2020-06-30T11:22:54.201Z", + "publishedVersion": 4, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "title___NODE": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___EntrytitleTextNode", - "updatedAt": "2020-06-30T11:22:54.201Z", }, ], Array [ Object { "categoryDescription___NODE": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___EntrycategoryDescriptionTextNode", - "children": Array [ - "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___EntrytitleTextNode", - "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___EntrycategoryDescriptionTextNode", - ], - "contentful_id": "c24DPGBDeGEaYy8ms4Y8QMQ", - "createdAt": "2017-06-27T09:35:44.992Z", + "children": Array [], "icon___NODE": "rocybtov1ozk___c6t4HKjytPi0mYgs240wkG___Asset", "id": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry", "internal": Object { "contentDigest": "2017-06-27T09:46:43.477Z", "type": "ContentfulCategory", }, - "node_locale": "en-US", "parent": "Category", "product___NODE": Array [ "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry", ], - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "6XwpTaSiiI2Ak2Ww0oi6qa", - "id": "c6XwpTaSiiI2Ak2Ww0oi6qa", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Category", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.992Z", + "id": "c24DPGBDeGEaYy8ms4Y8QMQ", + "locale": "en-US", + "publishedAt": "2017-06-27T09:46:43.477Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "title___NODE": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___EntrytitleTextNode", - "updatedAt": "2017-06-27T09:46:43.477Z", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___EntrytitleTextNode", "internal": Object { "content": "Home & Kitchen", "contentDigest": "2020-06-30T11:22:54.201Z", "mediaType": "text/markdown", - "type": "contentfulCategoryTitleTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry", - "sys": Object { - "type": "Entry", - }, - "title": "Home & Kitchen", + "raw": "Home & Kitchen", }, ], Array [ Object { - "categoryDescription": "Shop for furniture, bedding, bath, vacuums, kitchen products, and more", - "children": Array [], "id": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___EntrycategoryDescriptionTextNode", "internal": Object { "content": "Shop for furniture, bedding, bath, vacuums, kitchen products, and more", "contentDigest": "2020-06-30T11:22:54.201Z", "mediaType": "text/markdown", - "type": "contentfulCategoryCategoryDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry", - "sys": Object { - "type": "Entry", - }, + "raw": "Shop for furniture, bedding, bath, vacuums, kitchen products, and more", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___EntrytitleTextNode", "internal": Object { "content": "Toys", "contentDigest": "2017-06-27T09:46:43.477Z", "mediaType": "text/markdown", - "type": "contentfulCategoryTitleTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry", - "sys": Object { - "type": "Entry", - }, - "title": "Toys", + "raw": "Toys", }, ], Array [ Object { - "categoryDescription": "Shop for toys, games, educational aids", - "children": Array [], "id": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___EntrycategoryDescriptionTextNode", "internal": Object { "content": "Shop for toys, games, educational aids", "contentDigest": "2017-06-27T09:46:43.477Z", "mediaType": "text/markdown", - "type": "contentfulCategoryCategoryDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry", - "sys": Object { - "type": "Entry", - }, + "raw": "Shop for toys, games, educational aids", }, ], Array [ Object { - "children": Array [], "description": null, "displayField": "title", "id": "Category", @@ -11061,8 +10373,14 @@ Array [ "type": "ContentfulContentType", }, "name": "Category", - "parent": null, "sys": Object { + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:31.492Z", + "id": "c6XwpTaSiiI2Ak2Ww0oi6qa", + "locale": "de", + "publishedAt": "2017-06-27T09:40:52.685Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "ContentType", }, }, @@ -11070,150 +10388,115 @@ Array [ Array [ Object { "categoryDescription___NODE": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry___decategoryDescriptionTextNode", - "children": Array [ - "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry___detitleTextNode", - "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry___decategoryDescriptionTextNode", - ], - "contentful_id": "c7LAnCobuuWYSqks6wAwY2a", - "createdAt": "2017-06-27T09:35:44.000Z", + "children": Array [], "icon___NODE": "rocybtov1ozk___c6m5AJ9vMPKc8OUoQeoCS4o___Asset___de", "id": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry___de", "internal": Object { "contentDigest": "2020-06-30T11:22:54.201Z", "type": "ContentfulCategory", }, - "node_locale": "de", "parent": "Category", "product___NODE": Array [ "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry___de", "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry___de", "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry___de", ], - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "6XwpTaSiiI2Ak2Ww0oi6qa", - "id": "c6XwpTaSiiI2Ak2Ww0oi6qa", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 4, + "contentType___NODE": "Category", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.000Z", + "id": "c7LAnCobuuWYSqks6wAwY2a", + "locale": "de", + "publishedAt": "2020-06-30T11:22:54.201Z", + "publishedVersion": 4, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "title___NODE": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry___detitleTextNode", - "updatedAt": "2020-06-30T11:22:54.201Z", }, ], Array [ Object { "categoryDescription___NODE": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry___decategoryDescriptionTextNode", - "children": Array [ - "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry___detitleTextNode", - "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry___decategoryDescriptionTextNode", - ], - "contentful_id": "c24DPGBDeGEaYy8ms4Y8QMQ", - "createdAt": "2017-06-27T09:35:44.992Z", + "children": Array [], "icon___NODE": "rocybtov1ozk___c6t4HKjytPi0mYgs240wkG___Asset___de", "id": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry___de", "internal": Object { "contentDigest": "2017-06-27T09:46:43.477Z", "type": "ContentfulCategory", }, - "node_locale": "de", "parent": "Category", "product___NODE": Array [ "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry___de", ], - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "6XwpTaSiiI2Ak2Ww0oi6qa", - "id": "c6XwpTaSiiI2Ak2Ww0oi6qa", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Category", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.992Z", + "id": "c24DPGBDeGEaYy8ms4Y8QMQ", + "locale": "de", + "publishedAt": "2017-06-27T09:46:43.477Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "title___NODE": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry___detitleTextNode", - "updatedAt": "2017-06-27T09:46:43.477Z", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry___detitleTextNode", "internal": Object { "content": "Haus & Küche", "contentDigest": "2020-06-30T11:22:54.201Z", "mediaType": "text/markdown", - "type": "contentfulCategoryTitleTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry___de", - "sys": Object { - "type": "Entry", - }, - "title": "Haus & Küche", + "raw": "Haus & Küche", }, ], Array [ Object { - "categoryDescription": "Shop für Möbel, Bettwäsche, Bad, Staubsauger, Küchenprodukte und vieles mehr", - "children": Array [], "id": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry___decategoryDescriptionTextNode", "internal": Object { "content": "Shop für Möbel, Bettwäsche, Bad, Staubsauger, Küchenprodukte und vieles mehr", "contentDigest": "2020-06-30T11:22:54.201Z", "mediaType": "text/markdown", - "type": "contentfulCategoryCategoryDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry___de", - "sys": Object { - "type": "Entry", - }, + "raw": "Shop für Möbel, Bettwäsche, Bad, Staubsauger, Küchenprodukte und vieles mehr", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry___detitleTextNode", "internal": Object { "content": "Spielzeug", "contentDigest": "2017-06-27T09:46:43.477Z", "mediaType": "text/markdown", - "type": "contentfulCategoryTitleTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry___de", - "sys": Object { - "type": "Entry", - }, - "title": "Spielzeug", + "raw": "Spielzeug", }, ], Array [ Object { - "categoryDescription": "Spielzeugladen, Spiele, Lernhilfen", - "children": Array [], "id": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry___decategoryDescriptionTextNode", "internal": Object { "content": "Spielzeugladen, Spiele, Lernhilfen", "contentDigest": "2017-06-27T09:46:43.477Z", "mediaType": "text/markdown", - "type": "contentfulCategoryCategoryDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry___de", - "sys": Object { - "type": "Entry", - }, + "raw": "Spielzeugladen, Spiele, Lernhilfen", }, ], Array [ Object { - "children": Array [], "description": null, "displayField": "companyName", "id": "Brand", @@ -11222,22 +10505,23 @@ Array [ "type": "ContentfulContentType", }, "name": "Brand", - "parent": null, "sys": Object { + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:31.534Z", + "id": "sFzTZbSuM8coEwygeUYes", + "locale": "en-US", + "publishedAt": "2017-06-27T09:41:09.339Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "ContentType", }, }, ], Array [ Object { - "children": Array [ - "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___EntrycompanyNameTextNode", - "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___EntrycompanyDescriptionTextNode", - ], + "children": Array [], "companyDescription___NODE": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___EntrycompanyDescriptionTextNode", "companyName___NODE": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___EntrycompanyNameTextNode", - "contentful_id": "c651CQ8rLoIYCeY6G0QG22q", - "createdAt": "2017-06-27T09:35:43.997Z", "email": "normann@normann-copenhagen.com", "id": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___Entry", "internal": Object { @@ -11245,7 +10529,6 @@ Array [ "type": "ContentfulBrand", }, "logo___NODE": "rocybtov1ozk___c3wtvPBbBjiMKqKKga8I2Cu___Asset", - "node_locale": "en-US", "parent": "Brand", "phone": Array [ "+45 35 55 44 59", @@ -11254,34 +10537,26 @@ Array [ "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry", "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry", ], - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "sFzTZbSuM8coEwygeUYes", - "id": "sFzTZbSuM8coEwygeUYes", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Brand", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:43.997Z", + "id": "c651CQ8rLoIYCeY6G0QG22q", + "locale": "en-US", + "publishedAt": "2017-06-27T09:55:16.820Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "twitter": "https://twitter.com/NormannCPH", - "updatedAt": "2017-06-27T09:55:16.820Z", "website": "http://www.normann-copenhagen.com/", }, ], Array [ Object { - "children": Array [ - "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___EntrycompanyNameTextNode", - "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___EntrycompanyDescriptionTextNode", - ], + "children": Array [], "companyDescription___NODE": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___EntrycompanyDescriptionTextNode", "companyName___NODE": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___EntrycompanyNameTextNode", - "contentful_id": "c4LgMotpNF6W20YKmuemW0a", - "createdAt": "2017-06-27T09:35:44.396Z", "email": "info@acgears.com", "id": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry", "internal": Object { @@ -11289,7 +10564,6 @@ Array [ "type": "ContentfulBrand", }, "logo___NODE": "rocybtov1ozk___c2Y8LhXLnYAYqKCGEWG4EKI___Asset", - "node_locale": "en-US", "parent": "Brand", "phone": Array [ "+1 212 260 2269", @@ -11297,116 +10571,93 @@ Array [ "product___NODE": Array [ "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry", ], - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "sFzTZbSuM8coEwygeUYes", - "id": "sFzTZbSuM8coEwygeUYes", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Brand", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.396Z", + "id": "c4LgMotpNF6W20YKmuemW0a", + "locale": "en-US", + "publishedAt": "2017-06-27T09:51:15.647Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, - "updatedAt": "2017-06-27T09:51:15.647Z", "website": "http://www.lemnos.jp/en/", }, ], Array [ Object { - "children": Array [ - "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___EntrycompanyNameTextNode", - "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___EntrycompanyDescriptionTextNode", - ], + "children": Array [], "companyDescription___NODE": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___EntrycompanyDescriptionTextNode", "companyName___NODE": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___EntrycompanyNameTextNode", - "contentful_id": "JrePkDVYomE8AwcuCUyMi", - "createdAt": "2017-06-27T09:35:44.988Z", "id": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___Entry", "internal": Object { "contentDigest": "2017-06-27T09:50:36.937Z", "type": "ContentfulBrand", }, "logo___NODE": "rocybtov1ozk___c4zj1ZOfHgQ8oqgaSKm4Qo2___Asset", - "node_locale": "en-US", "parent": "Brand", "product___NODE": Array [ "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry", ], - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "sFzTZbSuM8coEwygeUYes", - "id": "sFzTZbSuM8coEwygeUYes", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Brand", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.988Z", + "id": "JrePkDVYomE8AwcuCUyMi", + "locale": "en-US", + "publishedAt": "2017-06-27T09:50:36.937Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, - "updatedAt": "2017-06-27T09:50:36.937Z", "website": "http://playsam.com/", }, ], Array [ Object { - "children": Array [], - "companyName": "Normann Copenhagen", "id": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___EntrycompanyNameTextNode", "internal": Object { "content": "Normann Copenhagen", "contentDigest": "2017-06-27T09:55:16.820Z", "mediaType": "text/markdown", - "type": "contentfulBrandCompanyNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___Entry", - "sys": Object { - "type": "Entry", - }, + "raw": "Normann Copenhagen", }, ], Array [ Object { - "children": Array [], - "companyDescription": "Normann Copenhagen is a way of living - a mindset. We love to challenge the conventional design rules. This is why you will find traditional materials put into untraditional use such as a Stone Hook made of Icelandic stones, a vase made out of silicon and last but not least a dog made out of plastic.", "id": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___EntrycompanyDescriptionTextNode", "internal": Object { "content": "Normann Copenhagen is a way of living - a mindset. We love to challenge the conventional design rules. This is why you will find traditional materials put into untraditional use such as a Stone Hook made of Icelandic stones, a vase made out of silicon and last but not least a dog made out of plastic.", "contentDigest": "2017-06-27T09:55:16.820Z", "mediaType": "text/markdown", - "type": "contentfulBrandCompanyDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___Entry", - "sys": Object { - "type": "Entry", - }, + "raw": "Normann Copenhagen is a way of living - a mindset. We love to challenge the conventional design rules. This is why you will find traditional materials put into untraditional use such as a Stone Hook made of Icelandic stones, a vase made out of silicon and last but not least a dog made out of plastic.", }, ], Array [ Object { - "children": Array [], - "companyName": "Lemnos", "id": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___EntrycompanyNameTextNode", "internal": Object { "content": "Lemnos", "contentDigest": "2017-06-27T09:51:15.647Z", "mediaType": "text/markdown", - "type": "contentfulBrandCompanyNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry", - "sys": Object { - "type": "Entry", - }, + "raw": "Lemnos", }, ], Array [ Object { - "children": Array [], - "companyDescription": "TAKATA Lemnos Inc. was founded in 1947 as a brass casting manufacturing industry in Takaoka-city, Toyama Prefecture, Japan and we launched out into the full-scale business trade with Seiko Clock Co., Ltd. since 1966. + "id": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___EntrycompanyDescriptionTextNode", + "internal": Object { + "content": "TAKATA Lemnos Inc. was founded in 1947 as a brass casting manufacturing industry in Takaoka-city, Toyama Prefecture, Japan and we launched out into the full-scale business trade with Seiko Clock Co., Ltd. since 1966. We entered into the development for the original planning from late 1980 and \\"Lemnos Brand\\" recognized as the global design clock by a masterpiece \\"HOLA\\" designed by Kazuo KAWASAKI which released in 1989. @@ -11417,9 +10668,12 @@ Lemnos brand products are now highly praised from the design shops and the inter In recent years, we also have been given high priority to develop interior accessories making full use of our traditional techniques by the founding manufacturer and we always focus our minds on the development for the new Lemnos products in the new market. Our Lemnos products are made carefully by our craftsmen finely honed skillful techniques in Japan. They surely bring out the attractiveness of the materials to the maximum and create fine products not being influenced on the fashion trend accordingly. TAKATA Lemnos Inc. definitely would like to be innovative and continuously propose the beauty lasts forever.", - "id": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___EntrycompanyDescriptionTextNode", - "internal": Object { - "content": "TAKATA Lemnos Inc. was founded in 1947 as a brass casting manufacturing industry in Takaoka-city, Toyama Prefecture, Japan and we launched out into the full-scale business trade with Seiko Clock Co., Ltd. since 1966. + "contentDigest": "2017-06-27T09:51:15.647Z", + "mediaType": "text/markdown", + "type": "ContentfulNodeTypeText", + }, + "parent": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry", + "raw": "TAKATA Lemnos Inc. was founded in 1947 as a brass casting manufacturing industry in Takaoka-city, Toyama Prefecture, Japan and we launched out into the full-scale business trade with Seiko Clock Co., Ltd. since 1966. We entered into the development for the original planning from late 1980 and \\"Lemnos Brand\\" recognized as the global design clock by a masterpiece \\"HOLA\\" designed by Kazuo KAWASAKI which released in 1989. @@ -11430,53 +10684,36 @@ Lemnos brand products are now highly praised from the design shops and the inter In recent years, we also have been given high priority to develop interior accessories making full use of our traditional techniques by the founding manufacturer and we always focus our minds on the development for the new Lemnos products in the new market. Our Lemnos products are made carefully by our craftsmen finely honed skillful techniques in Japan. They surely bring out the attractiveness of the materials to the maximum and create fine products not being influenced on the fashion trend accordingly. TAKATA Lemnos Inc. definitely would like to be innovative and continuously propose the beauty lasts forever.", - "contentDigest": "2017-06-27T09:51:15.647Z", - "mediaType": "text/markdown", - "type": "contentfulBrandCompanyDescriptionTextNode", - }, - "parent": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry", - "sys": Object { - "type": "Entry", - }, }, ], Array [ Object { - "children": Array [], - "companyName": "Playsam", "id": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___EntrycompanyNameTextNode", "internal": Object { "content": "Playsam", "contentDigest": "2017-06-27T09:50:36.937Z", "mediaType": "text/markdown", - "type": "contentfulBrandCompanyNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___Entry", - "sys": Object { - "type": "Entry", - }, + "raw": "Playsam", }, ], Array [ Object { - "children": Array [], - "companyDescription": "Playsam is the leading Scandinavian design company for executive wooden toy gift. Scandinavian design playful creativity, integrity and sophistication are Playsam. Scandinavian design and wooden toy makes Playsam gift lovely to the world of design since 1984.", "id": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___EntrycompanyDescriptionTextNode", "internal": Object { "content": "Playsam is the leading Scandinavian design company for executive wooden toy gift. Scandinavian design playful creativity, integrity and sophistication are Playsam. Scandinavian design and wooden toy makes Playsam gift lovely to the world of design since 1984.", "contentDigest": "2017-06-27T09:50:36.937Z", "mediaType": "text/markdown", - "type": "contentfulBrandCompanyDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___Entry", - "sys": Object { - "type": "Entry", - }, + "raw": "Playsam is the leading Scandinavian design company for executive wooden toy gift. Scandinavian design playful creativity, integrity and sophistication are Playsam. Scandinavian design and wooden toy makes Playsam gift lovely to the world of design since 1984.", }, ], Array [ Object { - "children": Array [], "description": null, "displayField": "companyName", "id": "Brand", @@ -11485,22 +10722,23 @@ Our Lemnos products are made carefully by our craftsmen finely honed skillful te "type": "ContentfulContentType", }, "name": "Brand", - "parent": null, "sys": Object { + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:31.534Z", + "id": "sFzTZbSuM8coEwygeUYes", + "locale": "de", + "publishedAt": "2017-06-27T09:41:09.339Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "ContentType", }, }, ], Array [ Object { - "children": Array [ - "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___Entry___decompanyNameTextNode", - "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___Entry___decompanyDescriptionTextNode", - ], + "children": Array [], "companyDescription___NODE": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___Entry___decompanyDescriptionTextNode", "companyName___NODE": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___Entry___decompanyNameTextNode", - "contentful_id": "c651CQ8rLoIYCeY6G0QG22q", - "createdAt": "2017-06-27T09:35:43.997Z", "email": "normann@normann-copenhagen.com", "id": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___Entry___de", "internal": Object { @@ -11508,7 +10746,6 @@ Our Lemnos products are made carefully by our craftsmen finely honed skillful te "type": "ContentfulBrand", }, "logo___NODE": "rocybtov1ozk___c3wtvPBbBjiMKqKKga8I2Cu___Asset___de", - "node_locale": "de", "parent": "Brand", "phone": Array [ "+45 35 55 44 59", @@ -11517,34 +10754,26 @@ Our Lemnos products are made carefully by our craftsmen finely honed skillful te "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry___de", "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry___de", ], - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "sFzTZbSuM8coEwygeUYes", - "id": "sFzTZbSuM8coEwygeUYes", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Brand", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:43.997Z", + "id": "c651CQ8rLoIYCeY6G0QG22q", + "locale": "de", + "publishedAt": "2017-06-27T09:55:16.820Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "twitter": "https://twitter.com/NormannCPH", - "updatedAt": "2017-06-27T09:55:16.820Z", "website": "http://www.normann-copenhagen.com/", }, ], Array [ Object { - "children": Array [ - "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry___decompanyNameTextNode", - "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry___decompanyDescriptionTextNode", - ], + "children": Array [], "companyDescription___NODE": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry___decompanyDescriptionTextNode", "companyName___NODE": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry___decompanyNameTextNode", - "contentful_id": "c4LgMotpNF6W20YKmuemW0a", - "createdAt": "2017-06-27T09:35:44.396Z", "email": "info@acgears.com", "id": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry___de", "internal": Object { @@ -11552,7 +10781,6 @@ Our Lemnos products are made carefully by our craftsmen finely honed skillful te "type": "ContentfulBrand", }, "logo___NODE": "rocybtov1ozk___c2Y8LhXLnYAYqKCGEWG4EKI___Asset___de", - "node_locale": "de", "parent": "Brand", "phone": Array [ "+1 212 260 2269", @@ -11560,116 +10788,93 @@ Our Lemnos products are made carefully by our craftsmen finely honed skillful te "product___NODE": Array [ "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry___de", ], - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "sFzTZbSuM8coEwygeUYes", - "id": "sFzTZbSuM8coEwygeUYes", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Brand", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.396Z", + "id": "c4LgMotpNF6W20YKmuemW0a", + "locale": "de", + "publishedAt": "2017-06-27T09:51:15.647Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, - "updatedAt": "2017-06-27T09:51:15.647Z", "website": "http://www.lemnos.jp/en/", }, ], Array [ Object { - "children": Array [ - "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___Entry___decompanyNameTextNode", - "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___Entry___decompanyDescriptionTextNode", - ], + "children": Array [], "companyDescription___NODE": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___Entry___decompanyDescriptionTextNode", "companyName___NODE": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___Entry___decompanyNameTextNode", - "contentful_id": "JrePkDVYomE8AwcuCUyMi", - "createdAt": "2017-06-27T09:35:44.988Z", "id": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___Entry___de", "internal": Object { "contentDigest": "2017-06-27T09:50:36.937Z", "type": "ContentfulBrand", }, "logo___NODE": "rocybtov1ozk___c4zj1ZOfHgQ8oqgaSKm4Qo2___Asset___de", - "node_locale": "de", "parent": "Brand", "product___NODE": Array [ "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry___de", ], - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "sFzTZbSuM8coEwygeUYes", - "id": "sFzTZbSuM8coEwygeUYes", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Brand", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.988Z", + "id": "JrePkDVYomE8AwcuCUyMi", + "locale": "de", + "publishedAt": "2017-06-27T09:50:36.937Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, - "updatedAt": "2017-06-27T09:50:36.937Z", "website": "http://playsam.com/", }, ], Array [ Object { - "children": Array [], - "companyName": "Normann Copenhagen", "id": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___Entry___decompanyNameTextNode", "internal": Object { "content": "Normann Copenhagen", "contentDigest": "2017-06-27T09:55:16.820Z", "mediaType": "text/markdown", - "type": "contentfulBrandCompanyNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___Entry___de", - "sys": Object { - "type": "Entry", - }, + "raw": "Normann Copenhagen", }, ], Array [ Object { - "children": Array [], - "companyDescription": "Normann Kopenhagen ist eine Art zu leben - eine Denkweise. Wir lieben es, die konventionellen Designregeln herauszufordern. Aus diesem Grund finden Sie traditionelle Materialien, die in untraditionelle Verwendung wie ein Steinhaken aus isländischen Steinen, eine Vase aus Silizium und last but not least ein Hund aus Kunststoff.", "id": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___Entry___decompanyDescriptionTextNode", "internal": Object { "content": "Normann Kopenhagen ist eine Art zu leben - eine Denkweise. Wir lieben es, die konventionellen Designregeln herauszufordern. Aus diesem Grund finden Sie traditionelle Materialien, die in untraditionelle Verwendung wie ein Steinhaken aus isländischen Steinen, eine Vase aus Silizium und last but not least ein Hund aus Kunststoff.", "contentDigest": "2017-06-27T09:55:16.820Z", "mediaType": "text/markdown", - "type": "contentfulBrandCompanyDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___Entry___de", - "sys": Object { - "type": "Entry", - }, + "raw": "Normann Kopenhagen ist eine Art zu leben - eine Denkweise. Wir lieben es, die konventionellen Designregeln herauszufordern. Aus diesem Grund finden Sie traditionelle Materialien, die in untraditionelle Verwendung wie ein Steinhaken aus isländischen Steinen, eine Vase aus Silizium und last but not least ein Hund aus Kunststoff.", }, ], Array [ Object { - "children": Array [], - "companyName": "Lemnos", "id": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry___decompanyNameTextNode", "internal": Object { "content": "Lemnos", "contentDigest": "2017-06-27T09:51:15.647Z", "mediaType": "text/markdown", - "type": "contentfulBrandCompanyNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry___de", - "sys": Object { - "type": "Entry", - }, + "raw": "Lemnos", }, ], Array [ Object { - "children": Array [], - "companyDescription": "TAKATA Lemnos Inc. wurde im Jahre 1947 als Messing-Casting-Fertigungsindustrie in Takaoka-Stadt, Toyama Prefecture, Japan gegründet und wir starteten seit 1966 mit der Seiko Clock Co., Ltd. + "id": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry___decompanyDescriptionTextNode", + "internal": Object { + "content": "TAKATA Lemnos Inc. wurde im Jahre 1947 als Messing-Casting-Fertigungsindustrie in Takaoka-Stadt, Toyama Prefecture, Japan gegründet und wir starteten seit 1966 mit der Seiko Clock Co., Ltd. Wir haben die Entwicklung für die ursprüngliche Planung ab Ende 1980 eingegangen und \\"Lemnos Brand\\" wurde als globale Designuhr von einem Meisterwerk \\"HOLA\\" von Kazuo KAWASAKI entworfen, das 1989 erschien. @@ -11680,9 +10885,12 @@ Lemnos Markenprodukte werden nun von den Designläden und den Innenhandelsgesch In den vergangenen Jahren haben wir auch eine hohe Priorität für die Entwicklung von Innenausstattung, die den traditionellen Techniken des Gründungsherstellers voll ausnutzt, und wir konzentrieren uns immer auf die Entwicklung der neuen Lemnos-Produkte im neuen Markt. Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliffen geschickten Techniken in Japan gemacht. Sie bringen sicherlich die Attraktivität der Materialien auf das Maximum und schaffen feine Produkte nicht beeinflusst auf die Mode-Trend entsprechend. TAKATA Lemnos Inc. möchte definitiv innovativ sein und ständig vorschlagen, die Schönheit dauert ewig.", - "id": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry___decompanyDescriptionTextNode", - "internal": Object { - "content": "TAKATA Lemnos Inc. wurde im Jahre 1947 als Messing-Casting-Fertigungsindustrie in Takaoka-Stadt, Toyama Prefecture, Japan gegründet und wir starteten seit 1966 mit der Seiko Clock Co., Ltd. + "contentDigest": "2017-06-27T09:51:15.647Z", + "mediaType": "text/markdown", + "type": "ContentfulNodeTypeText", + }, + "parent": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry___de", + "raw": "TAKATA Lemnos Inc. wurde im Jahre 1947 als Messing-Casting-Fertigungsindustrie in Takaoka-Stadt, Toyama Prefecture, Japan gegründet und wir starteten seit 1966 mit der Seiko Clock Co., Ltd. Wir haben die Entwicklung für die ursprüngliche Planung ab Ende 1980 eingegangen und \\"Lemnos Brand\\" wurde als globale Designuhr von einem Meisterwerk \\"HOLA\\" von Kazuo KAWASAKI entworfen, das 1989 erschien. @@ -11693,53 +10901,36 @@ Lemnos Markenprodukte werden nun von den Designläden und den Innenhandelsgesch In den vergangenen Jahren haben wir auch eine hohe Priorität für die Entwicklung von Innenausstattung, die den traditionellen Techniken des Gründungsherstellers voll ausnutzt, und wir konzentrieren uns immer auf die Entwicklung der neuen Lemnos-Produkte im neuen Markt. Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliffen geschickten Techniken in Japan gemacht. Sie bringen sicherlich die Attraktivität der Materialien auf das Maximum und schaffen feine Produkte nicht beeinflusst auf die Mode-Trend entsprechend. TAKATA Lemnos Inc. möchte definitiv innovativ sein und ständig vorschlagen, die Schönheit dauert ewig.", - "contentDigest": "2017-06-27T09:51:15.647Z", - "mediaType": "text/markdown", - "type": "contentfulBrandCompanyDescriptionTextNode", - }, - "parent": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry___de", - "sys": Object { - "type": "Entry", - }, }, ], Array [ Object { - "children": Array [], - "companyName": "Playsam", "id": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___Entry___decompanyNameTextNode", "internal": Object { "content": "Playsam", "contentDigest": "2017-06-27T09:50:36.937Z", "mediaType": "text/markdown", - "type": "contentfulBrandCompanyNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___Entry___de", - "sys": Object { - "type": "Entry", - }, + "raw": "Playsam", }, ], Array [ Object { - "children": Array [], - "companyDescription": "Playsam ist die führende skandinavische Designfirma für Executive Holzspielzeug Geschenk. Skandinavisches Design spielerische Kreativität, Integrität und Raffinesse sind Playsam. Skandinavisches Design und hölzernes Spielzeug macht Playsam Geschenk schön in die Welt des Designs seit 1984.", "id": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___Entry___decompanyDescriptionTextNode", "internal": Object { "content": "Playsam ist die führende skandinavische Designfirma für Executive Holzspielzeug Geschenk. Skandinavisches Design spielerische Kreativität, Integrität und Raffinesse sind Playsam. Skandinavisches Design und hölzernes Spielzeug macht Playsam Geschenk schön in die Welt des Designs seit 1984.", "contentDigest": "2017-06-27T09:50:36.937Z", "mediaType": "text/markdown", - "type": "contentfulBrandCompanyDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___Entry___de", - "sys": Object { - "type": "Entry", - }, + "raw": "Playsam ist die führende skandinavische Designfirma für Executive Holzspielzeug Geschenk. Skandinavisches Design spielerische Kreativität, Integrität und Raffinesse sind Playsam. Skandinavisches Design und hölzernes Spielzeug macht Playsam Geschenk schön in die Welt des Designs seit 1984.", }, ], Array [ Object { - "children": Array [], "description": null, "displayField": "productName", "id": "Product", @@ -11748,8 +10939,14 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "type": "ContentfulContentType", }, "name": "Product", - "parent": null, "sys": Object { + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:31.538Z", + "id": "c2PqfXUJwE8qSYKuM0U6w8M", + "locale": "en-US", + "publishedAt": "2017-06-27T09:40:36.821Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "ContentType", }, }, @@ -11760,12 +10957,7 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "categories___NODE": Array [ "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry", ], - "children": Array [ - "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___EntryproductNameTextNode", - "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___EntryproductDescriptionTextNode", - ], - "contentful_id": "c5KsDBWseXY6QegucYAoacS", - "createdAt": "2017-06-27T09:35:43.996Z", + "children": Array [], "id": "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry", "image___NODE": Array [ "rocybtov1ozk___wtrHxeu3zEoEce2MokCSi___Asset", @@ -11774,7 +10966,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "contentDigest": "2017-06-27T09:56:59.626Z", "type": "ContentfulProduct", }, - "node_locale": "en-US", "parent": "Product", "price": 44, "productDescription___NODE": "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___EntryproductDescriptionTextNode", @@ -11783,17 +10974,15 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "sizetypecolor": "Length: 135 mm | color: espresso, green, or icar (white)", "sku": "B001R6JUZ2", "slug": "playsam-streamliner-classic-car-espresso", - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "2PqfXUJwE8qSYKuM0U6w8M", - "id": "c2PqfXUJwE8qSYKuM0U6w8M", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Product", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:43.996Z", + "id": "c5KsDBWseXY6QegucYAoacS", + "locale": "en-US", + "publishedAt": "2017-06-27T09:56:59.626Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "tags": Array [ @@ -11803,7 +10992,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "sweden", "design", ], - "updatedAt": "2017-06-27T09:56:59.626Z", "website": "http://www.amazon.com/dp/B001R6JUZ2/", }, ], @@ -11813,12 +11001,7 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "categories___NODE": Array [ "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry", ], - "children": Array [ - "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___EntryproductNameTextNode", - "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___EntryproductDescriptionTextNode", - ], - "contentful_id": "c3DVqIYj4dOwwcKu6sgqOgg", - "createdAt": "2017-06-27T09:35:44.006Z", + "children": Array [], "id": "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry", "image___NODE": Array [ "rocybtov1ozk___Xc0ny7GWsMEMCeASWO2um___Asset", @@ -11827,7 +11010,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "contentDigest": "2017-06-27T09:54:51.159Z", "type": "ContentfulProduct", }, - "node_locale": "en-US", "parent": "Product", "price": 11, "productDescription___NODE": "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___EntryproductDescriptionTextNode", @@ -11836,17 +11018,15 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "sizetypecolor": "3 x 3 x 5 inches; 5.3 ounces", "sku": "B00E82D7I8", "slug": "hudson-wall-cup", - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "2PqfXUJwE8qSYKuM0U6w8M", - "id": "c2PqfXUJwE8qSYKuM0U6w8M", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Product", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.006Z", + "id": "c3DVqIYj4dOwwcKu6sgqOgg", + "locale": "en-US", + "publishedAt": "2017-06-27T09:54:51.159Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "tags": Array [ @@ -11854,7 +11034,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "flowers", "accessories", ], - "updatedAt": "2017-06-27T09:54:51.159Z", "website": "http://www.amazon.com/dp/B00E82D7I8/", }, ], @@ -11864,12 +11043,7 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "categories___NODE": Array [ "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry", ], - "children": Array [ - "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___EntryproductNameTextNode", - "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___EntryproductDescriptionTextNode", - ], - "contentful_id": "c6dbjWqNd9SqccegcqYq224", - "createdAt": "2017-06-27T09:35:44.049Z", + "children": Array [], "id": "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry", "image___NODE": Array [ "rocybtov1ozk___c10TkaLheGeQG6qQGqWYqUI___Asset", @@ -11878,7 +11052,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "contentDigest": "2017-06-27T09:53:23.179Z", "type": "ContentfulProduct", }, - "node_locale": "en-US", "parent": "Product", "price": 22, "productDescription___NODE": "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___EntryproductDescriptionTextNode", @@ -11887,17 +11060,15 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "sizetypecolor": "0.8 x 0.8 x 11.2 inches; 1.6 ounces", "sku": "B0081F2CCK", "slug": "whisk-beater", - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "2PqfXUJwE8qSYKuM0U6w8M", - "id": "c2PqfXUJwE8qSYKuM0U6w8M", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Product", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.049Z", + "id": "c6dbjWqNd9SqccegcqYq224", + "locale": "en-US", + "publishedAt": "2017-06-27T09:53:23.179Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "tags": Array [ @@ -11907,7 +11078,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "scandinavia", "design", ], - "updatedAt": "2017-06-27T09:53:23.179Z", "website": "http://www.amazon.com/dp/B0081F2CCK/", }, ], @@ -11917,12 +11087,7 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "categories___NODE": Array [ "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry", ], - "children": Array [ - "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___EntryproductNameTextNode", - "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___EntryproductDescriptionTextNode", - ], - "contentful_id": "c4BqrajvA8E6qwgkieoqmqO", - "createdAt": "2017-06-27T09:35:44.130Z", + "children": Array [], "id": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry", "image___NODE": Array [ "rocybtov1ozk___KTRF62Q4gg60q6WCsWKw8___Asset", @@ -11931,7 +11096,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "contentDigest": "2017-06-27T09:52:29.215Z", "type": "ContentfulProduct", }, - "node_locale": "en-US", "parent": "Product", "price": 120, "productDescription___NODE": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___EntryproductDescriptionTextNode", @@ -11940,17 +11104,15 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "sizetypecolor": "10\\" x 2.2\\"", "sku": "B00MG4ULK2", "slug": "soso-wall-clock", - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "2PqfXUJwE8qSYKuM0U6w8M", - "id": "c2PqfXUJwE8qSYKuM0U6w8M", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Product", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.130Z", + "id": "c4BqrajvA8E6qwgkieoqmqO", + "locale": "en-US", + "publishedAt": "2017-06-27T09:52:29.215Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "tags": Array [ @@ -11960,149 +11122,115 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "yellow", "gifts", ], - "updatedAt": "2017-06-27T09:52:29.215Z", "website": "http://store.dwell.com/soso-wall-clock.html", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___EntryproductNameTextNode", "internal": Object { "content": "Playsam Streamliner Classic Car, Espresso", "contentDigest": "2017-06-27T09:56:59.626Z", "mediaType": "text/markdown", - "type": "contentfulProductProductNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry", - "productName": "Playsam Streamliner Classic Car, Espresso", - "sys": Object { - "type": "Entry", - }, + "raw": "Playsam Streamliner Classic Car, Espresso", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___EntryproductDescriptionTextNode", "internal": Object { "content": "A classic Playsam design, the Streamliner Classic Car has been selected as Swedish Design Classic by the Swedish National Museum for its inventive style and sleek surface. It's no wonder that this wooden car has also been a long-standing favorite for children both big and small!", "contentDigest": "2017-06-27T09:56:59.626Z", "mediaType": "text/markdown", - "type": "contentfulProductProductDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry", - "productDescription": "A classic Playsam design, the Streamliner Classic Car has been selected as Swedish Design Classic by the Swedish National Museum for its inventive style and sleek surface. It's no wonder that this wooden car has also been a long-standing favorite for children both big and small!", - "sys": Object { - "type": "Entry", - }, + "raw": "A classic Playsam design, the Streamliner Classic Car has been selected as Swedish Design Classic by the Swedish National Museum for its inventive style and sleek surface. It's no wonder that this wooden car has also been a long-standing favorite for children both big and small!", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___EntryproductNameTextNode", "internal": Object { "content": "Hudson Wall Cup", "contentDigest": "2017-06-27T09:54:51.159Z", "mediaType": "text/markdown", - "type": "contentfulProductProductNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry", - "productName": "Hudson Wall Cup", - "sys": Object { - "type": "Entry", - }, + "raw": "Hudson Wall Cup", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___EntryproductDescriptionTextNode", "internal": Object { "content": "Wall Hanging Glass Flower Vase and Terrarium", "contentDigest": "2017-06-27T09:54:51.159Z", "mediaType": "text/markdown", - "type": "contentfulProductProductDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry", - "productDescription": "Wall Hanging Glass Flower Vase and Terrarium", - "sys": Object { - "type": "Entry", - }, + "raw": "Wall Hanging Glass Flower Vase and Terrarium", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___EntryproductNameTextNode", "internal": Object { "content": "Whisk Beater", "contentDigest": "2017-06-27T09:53:23.179Z", "mediaType": "text/markdown", - "type": "contentfulProductProductNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry", - "productName": "Whisk Beater", - "sys": Object { - "type": "Entry", - }, + "raw": "Whisk Beater", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___EntryproductDescriptionTextNode", "internal": Object { "content": "A creative little whisk that comes in 8 different colors. Handy and easy to clean after use. A great gift idea.", "contentDigest": "2017-06-27T09:53:23.179Z", "mediaType": "text/markdown", - "type": "contentfulProductProductDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry", - "productDescription": "A creative little whisk that comes in 8 different colors. Handy and easy to clean after use. A great gift idea.", - "sys": Object { - "type": "Entry", - }, + "raw": "A creative little whisk that comes in 8 different colors. Handy and easy to clean after use. A great gift idea.", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___EntryproductNameTextNode", "internal": Object { "content": "SoSo Wall Clock", "contentDigest": "2017-06-27T09:52:29.215Z", "mediaType": "text/markdown", - "type": "contentfulProductProductNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry", - "productName": "SoSo Wall Clock", - "sys": Object { - "type": "Entry", - }, + "raw": "SoSo Wall Clock", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___EntryproductDescriptionTextNode", "internal": Object { "content": "The newly released SoSo Clock from Lemnos marries simple, clean design and bold, striking features. Its saturated marigold face is a lively pop of color to white or grey walls, but would also pair nicely with navy and maroon. Where most clocks feature numbers at the border of the clock, the SoSo brings them in tight to the middle, leaving a wide space between the numbers and the slight frame. The hour hand provides a nice interruption to the black and yellow of the clock - it is featured in a brilliant white. Despite its bold color and contrast, the SoSo maintains a clean, pure aesthetic that is suitable to a variety of contemporary interiors.", "contentDigest": "2017-06-27T09:52:29.215Z", "mediaType": "text/markdown", - "type": "contentfulProductProductDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry", - "productDescription": "The newly released SoSo Clock from Lemnos marries simple, clean design and bold, striking features. Its saturated marigold face is a lively pop of color to white or grey walls, but would also pair nicely with navy and maroon. Where most clocks feature numbers at the border of the clock, the SoSo brings them in tight to the middle, leaving a wide space between the numbers and the slight frame. The hour hand provides a nice interruption to the black and yellow of the clock - it is featured in a brilliant white. Despite its bold color and contrast, the SoSo maintains a clean, pure aesthetic that is suitable to a variety of contemporary interiors.", - "sys": Object { - "type": "Entry", - }, + "raw": "The newly released SoSo Clock from Lemnos marries simple, clean design and bold, striking features. Its saturated marigold face is a lively pop of color to white or grey walls, but would also pair nicely with navy and maroon. Where most clocks feature numbers at the border of the clock, the SoSo brings them in tight to the middle, leaving a wide space between the numbers and the slight frame. The hour hand provides a nice interruption to the black and yellow of the clock - it is featured in a brilliant white. Despite its bold color and contrast, the SoSo maintains a clean, pure aesthetic that is suitable to a variety of contemporary interiors.", }, ], Array [ Object { - "children": Array [], "description": null, "displayField": "productName", "id": "Product", @@ -12111,8 +11239,14 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "type": "ContentfulContentType", }, "name": "Product", - "parent": null, "sys": Object { + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:31.538Z", + "id": "c2PqfXUJwE8qSYKuM0U6w8M", + "locale": "de", + "publishedAt": "2017-06-27T09:40:36.821Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "ContentType", }, }, @@ -12123,12 +11257,7 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "categories___NODE": Array [ "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry___de", ], - "children": Array [ - "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry___deproductNameTextNode", - "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry___deproductDescriptionTextNode", - ], - "contentful_id": "c5KsDBWseXY6QegucYAoacS", - "createdAt": "2017-06-27T09:35:43.996Z", + "children": Array [], "id": "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry___de", "image___NODE": Array [ "rocybtov1ozk___wtrHxeu3zEoEce2MokCSi___Asset___de", @@ -12137,7 +11266,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "contentDigest": "2017-06-27T09:56:59.626Z", "type": "ContentfulProduct", }, - "node_locale": "de", "parent": "Product", "price": 44, "productDescription___NODE": "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry___deproductDescriptionTextNode", @@ -12146,17 +11274,15 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "sizetypecolor": "Length: 135 mm | color: espresso, green, or icar (white)", "sku": "B001R6JUZ2", "slug": "playsam-streamliner-classic-car-espresso", - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "2PqfXUJwE8qSYKuM0U6w8M", - "id": "c2PqfXUJwE8qSYKuM0U6w8M", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Product", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:43.996Z", + "id": "c5KsDBWseXY6QegucYAoacS", + "locale": "de", + "publishedAt": "2017-06-27T09:56:59.626Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "tags": Array [ @@ -12166,7 +11292,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "sweden", "design", ], - "updatedAt": "2017-06-27T09:56:59.626Z", "website": "http://www.amazon.com/dp/B001R6JUZ2/", }, ], @@ -12176,12 +11301,7 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "categories___NODE": Array [ "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry___de", ], - "children": Array [ - "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry___deproductNameTextNode", - "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry___deproductDescriptionTextNode", - ], - "contentful_id": "c3DVqIYj4dOwwcKu6sgqOgg", - "createdAt": "2017-06-27T09:35:44.006Z", + "children": Array [], "id": "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry___de", "image___NODE": Array [ "rocybtov1ozk___Xc0ny7GWsMEMCeASWO2um___Asset___de", @@ -12190,7 +11310,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "contentDigest": "2017-06-27T09:54:51.159Z", "type": "ContentfulProduct", }, - "node_locale": "de", "parent": "Product", "price": 11, "productDescription___NODE": "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry___deproductDescriptionTextNode", @@ -12199,17 +11318,15 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "sizetypecolor": "3 x 3 x 5 inches; 5.3 ounces", "sku": "B00E82D7I8", "slug": "hudson-wall-cup", - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "2PqfXUJwE8qSYKuM0U6w8M", - "id": "c2PqfXUJwE8qSYKuM0U6w8M", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Product", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.006Z", + "id": "c3DVqIYj4dOwwcKu6sgqOgg", + "locale": "de", + "publishedAt": "2017-06-27T09:54:51.159Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "tags": Array [ @@ -12217,7 +11334,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "flowers", "accessories", ], - "updatedAt": "2017-06-27T09:54:51.159Z", "website": "http://www.amazon.com/dp/B00E82D7I8/", }, ], @@ -12227,12 +11343,7 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "categories___NODE": Array [ "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry___de", ], - "children": Array [ - "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry___deproductNameTextNode", - "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry___deproductDescriptionTextNode", - ], - "contentful_id": "c6dbjWqNd9SqccegcqYq224", - "createdAt": "2017-06-27T09:35:44.049Z", + "children": Array [], "id": "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry___de", "image___NODE": Array [ "rocybtov1ozk___c10TkaLheGeQG6qQGqWYqUI___Asset___de", @@ -12241,7 +11352,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "contentDigest": "2017-06-27T09:53:23.179Z", "type": "ContentfulProduct", }, - "node_locale": "de", "parent": "Product", "price": 22, "productDescription___NODE": "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry___deproductDescriptionTextNode", @@ -12250,17 +11360,15 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "sizetypecolor": "0.8 x 0.8 x 11.2 inches; 1.6 ounces", "sku": "B0081F2CCK", "slug": "whisk-beater", - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "2PqfXUJwE8qSYKuM0U6w8M", - "id": "c2PqfXUJwE8qSYKuM0U6w8M", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Product", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.049Z", + "id": "c6dbjWqNd9SqccegcqYq224", + "locale": "de", + "publishedAt": "2017-06-27T09:53:23.179Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "tags": Array [ @@ -12270,7 +11378,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "scandinavia", "design", ], - "updatedAt": "2017-06-27T09:53:23.179Z", "website": "http://www.amazon.com/dp/B0081F2CCK/", }, ], @@ -12280,12 +11387,7 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "categories___NODE": Array [ "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry___de", ], - "children": Array [ - "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry___deproductNameTextNode", - "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry___deproductDescriptionTextNode", - ], - "contentful_id": "c4BqrajvA8E6qwgkieoqmqO", - "createdAt": "2017-06-27T09:35:44.130Z", + "children": Array [], "id": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry___de", "image___NODE": Array [ "rocybtov1ozk___KTRF62Q4gg60q6WCsWKw8___Asset___de", @@ -12294,7 +11396,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "contentDigest": "2017-06-27T09:52:29.215Z", "type": "ContentfulProduct", }, - "node_locale": "de", "parent": "Product", "price": 120, "productDescription___NODE": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry___deproductDescriptionTextNode", @@ -12303,17 +11404,15 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "sizetypecolor": "10\\" x 2.2\\"", "sku": "B00MG4ULK2", "slug": "soso-wall-clock", - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "2PqfXUJwE8qSYKuM0U6w8M", - "id": "c2PqfXUJwE8qSYKuM0U6w8M", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Product", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.130Z", + "id": "c4BqrajvA8E6qwgkieoqmqO", + "locale": "de", + "publishedAt": "2017-06-27T09:52:29.215Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "tags": Array [ @@ -12323,149 +11422,115 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "yellow", "gifts", ], - "updatedAt": "2017-06-27T09:52:29.215Z", "website": "http://store.dwell.com/soso-wall-clock.html", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry___deproductNameTextNode", "internal": Object { "content": "Playsam Streamliner Klassisches Auto, Espresso", "contentDigest": "2017-06-27T09:56:59.626Z", "mediaType": "text/markdown", - "type": "contentfulProductProductNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry___de", - "productName": "Playsam Streamliner Klassisches Auto, Espresso", - "sys": Object { - "type": "Entry", - }, + "raw": "Playsam Streamliner Klassisches Auto, Espresso", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry___deproductDescriptionTextNode", "internal": Object { "content": "Ein klassisches Playsam-Design, das Streamliner Classic Car wurde als Swedish Design Classic vom Schwedischen Nationalmuseum für seinen erfinderischen Stil und seine schlanke Oberfläche ausgewählt. Es ist kein Wunder, dass dieses hölzerne Auto auch ein langjähriger Liebling für Kinder gewesen ist, die groß und klein sind!", "contentDigest": "2017-06-27T09:56:59.626Z", "mediaType": "text/markdown", - "type": "contentfulProductProductDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry___de", - "productDescription": "Ein klassisches Playsam-Design, das Streamliner Classic Car wurde als Swedish Design Classic vom Schwedischen Nationalmuseum für seinen erfinderischen Stil und seine schlanke Oberfläche ausgewählt. Es ist kein Wunder, dass dieses hölzerne Auto auch ein langjähriger Liebling für Kinder gewesen ist, die groß und klein sind!", - "sys": Object { - "type": "Entry", - }, + "raw": "Ein klassisches Playsam-Design, das Streamliner Classic Car wurde als Swedish Design Classic vom Schwedischen Nationalmuseum für seinen erfinderischen Stil und seine schlanke Oberfläche ausgewählt. Es ist kein Wunder, dass dieses hölzerne Auto auch ein langjähriger Liebling für Kinder gewesen ist, die groß und klein sind!", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry___deproductNameTextNode", "internal": Object { "content": "Becher", "contentDigest": "2017-06-27T09:54:51.159Z", "mediaType": "text/markdown", - "type": "contentfulProductProductNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry___de", - "productName": "Becher", - "sys": Object { - "type": "Entry", - }, + "raw": "Becher", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry___deproductDescriptionTextNode", "internal": Object { "content": "Wand-hängende Glas-Blumen-Vase und Terrarium", "contentDigest": "2017-06-27T09:54:51.159Z", "mediaType": "text/markdown", - "type": "contentfulProductProductDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry___de", - "productDescription": "Wand-hängende Glas-Blumen-Vase und Terrarium", - "sys": Object { - "type": "Entry", - }, + "raw": "Wand-hängende Glas-Blumen-Vase und Terrarium", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry___deproductNameTextNode", "internal": Object { "content": "Schneebesen", "contentDigest": "2017-06-27T09:53:23.179Z", "mediaType": "text/markdown", - "type": "contentfulProductProductNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry___de", - "productName": "Schneebesen", - "sys": Object { - "type": "Entry", - }, + "raw": "Schneebesen", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry___deproductDescriptionTextNode", "internal": Object { "content": "Ein kreativer kleiner Schneebesen, der in 8 verschiedenen Farben kommt. Praktisch und nach dem Gebrauch leicht zu reinigen. Eine tolle Geschenkidee.", "contentDigest": "2017-06-27T09:53:23.179Z", "mediaType": "text/markdown", - "type": "contentfulProductProductDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry___de", - "productDescription": "Ein kreativer kleiner Schneebesen, der in 8 verschiedenen Farben kommt. Praktisch und nach dem Gebrauch leicht zu reinigen. Eine tolle Geschenkidee.", - "sys": Object { - "type": "Entry", - }, + "raw": "Ein kreativer kleiner Schneebesen, der in 8 verschiedenen Farben kommt. Praktisch und nach dem Gebrauch leicht zu reinigen. Eine tolle Geschenkidee.", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry___deproductNameTextNode", "internal": Object { "content": "SoSo wanduhr", "contentDigest": "2017-06-27T09:52:29.215Z", "mediaType": "text/markdown", - "type": "contentfulProductProductNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry___de", - "productName": "SoSo wanduhr", - "sys": Object { - "type": "Entry", - }, + "raw": "SoSo wanduhr", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry___deproductDescriptionTextNode", "internal": Object { "content": "Die neu veröffentlichte SoSo Clock von Lemnos heiratet einfaches, sauberes Design und fette, auffällige Features. Sein gesättigtes Ringelblumengesicht ist ein lebhafter Pop der Farbe zu den weißen oder grauen Wänden, aber würde auch gut mit Marine und kastanienbraun paaren. Wo die meisten Uhren am Rande der Uhr Nummern sind, bringt der SoSo sie in die Mitte und lässt einen weiten Raum zwischen den Zahlen und dem leichten Rahmen. Der Stundenzeiger bietet eine schöne Unterbrechung der schwarzen und gelben der Uhr - es ist in einem brillanten Weiß vorgestellt. Trotz seiner kräftigen Farbe und des Kontrastes behält der SoSo eine saubere, reine Ästhetik, die für eine Vielzahl von zeitgenössischen Interieurs geeignet ist.", "contentDigest": "2017-06-27T09:52:29.215Z", "mediaType": "text/markdown", - "type": "contentfulProductProductDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry___de", - "productDescription": "Die neu veröffentlichte SoSo Clock von Lemnos heiratet einfaches, sauberes Design und fette, auffällige Features. Sein gesättigtes Ringelblumengesicht ist ein lebhafter Pop der Farbe zu den weißen oder grauen Wänden, aber würde auch gut mit Marine und kastanienbraun paaren. Wo die meisten Uhren am Rande der Uhr Nummern sind, bringt der SoSo sie in die Mitte und lässt einen weiten Raum zwischen den Zahlen und dem leichten Rahmen. Der Stundenzeiger bietet eine schöne Unterbrechung der schwarzen und gelben der Uhr - es ist in einem brillanten Weiß vorgestellt. Trotz seiner kräftigen Farbe und des Kontrastes behält der SoSo eine saubere, reine Ästhetik, die für eine Vielzahl von zeitgenössischen Interieurs geeignet ist.", - "sys": Object { - "type": "Entry", - }, + "raw": "Die neu veröffentlichte SoSo Clock von Lemnos heiratet einfaches, sauberes Design und fette, auffällige Features. Sein gesättigtes Ringelblumengesicht ist ein lebhafter Pop der Farbe zu den weißen oder grauen Wänden, aber würde auch gut mit Marine und kastanienbraun paaren. Wo die meisten Uhren am Rande der Uhr Nummern sind, bringt der SoSo sie in die Mitte und lässt einen weiten Raum zwischen den Zahlen und dem leichten Rahmen. Der Stundenzeiger bietet eine schöne Unterbrechung der schwarzen und gelben der Uhr - es ist in einem brillanten Weiß vorgestellt. Trotz seiner kräftigen Farbe und des Kontrastes behält der SoSo eine saubere, reine Ästhetik, die für eine Vielzahl von zeitgenössischen Interieurs geeignet ist.", }, ], Array [ Object { - "children": Array [], "description": "just for testing JSON fields", "displayField": null, "id": "JSON-test", @@ -12474,155 +11539,119 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "type": "ContentfulContentType", }, "name": "JSON-test", - "parent": null, "sys": Object { + "environmentId": "master", + "firstPublishedAt": "2017-11-28T02:15:46.221Z", + "id": "jsonTest", + "locale": "en-US", + "publishedAt": "2018-08-13T14:21:13.985Z", + "publishedVersion": 3, + "spaceId": "rocybtov1ozk", "type": "ContentType", }, }, ], Array [ Object { - "children": Array [ - "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___EntryjsonTestJSONNode", - "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___EntryjsonStringTest0JSONNode", - ], - "contentful_id": "c71mfnH4QKsSsQmgoaQuq6O", - "createdAt": "2017-11-28T02:16:10.604Z", + "children": Array [], "id": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry", "internal": Object { "contentDigest": "2018-08-13T14:27:12.458Z", "type": "ContentfulJsonTest", }, - "jsonStringTest___NODE": Array [ - "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___EntryjsonStringTest0JSONNode", - ], - "jsonTest___NODE": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___EntryjsonTestJSONNode", - "node_locale": "en-US", - "parent": "JSON-test", - "spaceId": "rocybtov1ozk", - "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "jsonTest", - "id": "jsonTest", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 4, - "type": "Entry", - }, - "updatedAt": "2018-08-13T14:27:12.458Z", - }, - ], - Array [ - Object { - "children": Array [], - "devDependencies": Object { - "babel-cli": "^6.26.0", - "babel-eslint": "^7.2.3", - "babel-jest": "^20.0.3", - "babel-plugin-add-module-exports": "^0.2.1", - "babel-plugin-lodash": "^3.2.11", - "babel-plugin-transform-async-to-generator": "^6.24.1", - "babel-plugin-transform-flow-strip-types": "^6.22.0", - "babel-plugin-transform-runtime": "^6.23.0", - "babel-preset-env": "^1.6.0", - "babel-preset-flow": "^6.23.0", - "babel-preset-react": "^6.24.1", - "babel-preset-stage-0": "^6.24.1", - "babel-register": "^6.26.0", - "babel-runtime": "^6.26.0", - "chokidar": "^1.7.0", - "cross-env": "^5.0.5", - "eslint": "^4.5.0", - "eslint-config-google": "^0.9.1", - "eslint-config-prettier": "^2.5.0", - "eslint-plugin-flow-vars": "^0.5.0", - "eslint-plugin-flowtype": "^2.35.0", - "eslint-plugin-import": "^2.7.0", - "eslint-plugin-jsx-a11y": "^6.0.2", - "eslint-plugin-prettier": "^2.2.0", - "eslint-plugin-react": "^7.3.0", - "flow-bin": "^0.42.0", - "glob": "^7.1.1", - "jest": "^20.0.4", - "jest-cli": "^20.0.4", - "lerna": "^2.1.1", - "plop": "^1.8.1", - "prettier": "^1.7.0", - "prettier-eslint-cli": "4.2.x", - "remotedev-server": "^0.2.3", - "rimraf": "^2.6.1", - }, - "engines": Object { - "yarn": "^1.2.1", - }, - "eslintIgnore": Array [ - "interfaces", - "**/__tests__/fixtures/", - ], - "id": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___EntryjsonTestJSONNode", - "internal": Object { - "content": "{\\"engines\\":{\\"yarn\\":\\"^1.2.1\\"},\\"private\\":true,\\"scripts\\":{\\"jest\\":\\"jest\\",\\"lint\\":\\"eslint --ext .js,.jsx packages/**/src\\",\\"plop\\":\\"plop\\",\\"test\\":\\"yarn lint && yarn jest\\",\\"lerna\\":\\"lerna\\",\\"watch\\":\\"lerna run watch --no-sort --stream --concurrency 999\\",\\"format\\":\\"npm run format-packages && npm run format-cache-dir && npm run format-www && npm run format-examples && npm run format-scripts\\",\\"publish\\":\\"lerna publish\\",\\"bootstrap\\":\\"yarn && npm run check-versions && lerna run prepublish\\",\\"lint:flow\\":\\"babel-node scripts/flow-check.js\\",\\"remotedev\\":\\"remotedev --hostname=localhost --port=19999\\",\\"test_bkup\\":\\"npm run lint && npm run test-node && npm run test-integration\\",\\"format-www\\":\\"prettier-eslint --write /\\"www/*.js/\\" /\\"www/src/**/*.js/\\"\\",\\"test:watch\\":\\"jest --watch\\",\\"test:update\\":\\"jest --updateSnapshot\\",\\"publish-next\\":\\"lerna publish --npm-tag=next\\",\\"check-versions\\":\\"babel-node scripts/check-versions.js\\",\\"format-scripts\\":\\"prettier-eslint --write /\\"scripts/**/*.js/\\"\\",\\"publish-canary\\":\\"lerna publish --canary --yes\\",\\"format-examples\\":\\"prettier-eslint --write /\\"examples/**/gatsby-node.js/\\" /\\"examples/**/gatsby-config.js/\\" /\\"examples/**/src/**/*.js/\\"\\",\\"format-packages\\":\\"prettier-eslint --write /\\"packages/*/src/**/*.js/\\"\\",\\"format-cache-dir\\":\\"prettier-eslint --write /\\"packages/gatsby/cache-dir/*.js/\\"\\"},\\"workspaces\\":[\\"packages/*\\"],\\"eslintIgnore\\":[\\"interfaces\\",\\"**/__tests__/fixtures/\\"],\\"devDependencies\\":{\\"glob\\":\\"^7.1.1\\",\\"jest\\":\\"^20.0.4\\",\\"plop\\":\\"^1.8.1\\",\\"lerna\\":\\"^2.1.1\\",\\"eslint\\":\\"^4.5.0\\",\\"rimraf\\":\\"^2.6.1\\",\\"chokidar\\":\\"^1.7.0\\",\\"flow-bin\\":\\"^0.42.0\\",\\"jest-cli\\":\\"^20.0.4\\",\\"prettier\\":\\"^1.7.0\\",\\"babel-cli\\":\\"^6.26.0\\",\\"cross-env\\":\\"^5.0.5\\",\\"babel-jest\\":\\"^20.0.3\\",\\"babel-eslint\\":\\"^7.2.3\\",\\"babel-runtime\\":\\"^6.26.0\\",\\"babel-register\\":\\"^6.26.0\\",\\"babel-preset-env\\":\\"^1.6.0\\",\\"remotedev-server\\":\\"^0.2.3\\",\\"babel-preset-flow\\":\\"^6.23.0\\",\\"babel-preset-react\\":\\"^6.24.1\\",\\"babel-plugin-lodash\\":\\"^3.2.11\\",\\"eslint-plugin-react\\":\\"^7.3.0\\",\\"prettier-eslint-cli\\":\\"4.2.x\\",\\"babel-preset-stage-0\\":\\"^6.24.1\\",\\"eslint-config-google\\":\\"^0.9.1\\",\\"eslint-plugin-import\\":\\"^2.7.0\\",\\"eslint-config-prettier\\":\\"^2.5.0\\",\\"eslint-plugin-flowtype\\":\\"^2.35.0\\",\\"eslint-plugin-jsx-a11y\\":\\"^6.0.2\\",\\"eslint-plugin-prettier\\":\\"^2.2.0\\",\\"eslint-plugin-flow-vars\\":\\"^0.5.0\\",\\"babel-plugin-transform-runtime\\":\\"^6.23.0\\",\\"babel-plugin-add-module-exports\\":\\"^0.2.1\\",\\"babel-plugin-transform-flow-strip-types\\":\\"^6.22.0\\",\\"babel-plugin-transform-async-to-generator\\":\\"^6.24.1\\"}}", - "contentDigest": "2018-08-13T14:27:12.458Z", - "mediaType": "application/json", - "type": "contentfulJsonTestJsonTestJsonNode", - }, - "parent": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry", - "private": true, - "scripts": Object { - "bootstrap": "yarn && npm run check-versions && lerna run prepublish", - "check-versions": "babel-node scripts/check-versions.js", - "format": "npm run format-packages && npm run format-cache-dir && npm run format-www && npm run format-examples && npm run format-scripts", - "format-cache-dir": "prettier-eslint --write \\"packages/gatsby/cache-dir/*.js\\"", - "format-examples": "prettier-eslint --write \\"examples/**/gatsby-node.js\\" \\"examples/**/gatsby-config.js\\" \\"examples/**/src/**/*.js\\"", - "format-packages": "prettier-eslint --write \\"packages/*/src/**/*.js\\"", - "format-scripts": "prettier-eslint --write \\"scripts/**/*.js\\"", - "format-www": "prettier-eslint --write \\"www/*.js\\" \\"www/src/**/*.js\\"", - "jest": "jest", - "lerna": "lerna", - "lint": "eslint --ext .js,.jsx packages/**/src", - "lint:flow": "babel-node scripts/flow-check.js", - "plop": "plop", - "publish": "lerna publish", - "publish-canary": "lerna publish --canary --yes", - "publish-next": "lerna publish --npm-tag=next", - "remotedev": "remotedev --hostname=localhost --port=19999", - "test": "yarn lint && yarn jest", - "test:update": "jest --updateSnapshot", - "test:watch": "jest --watch", - "test_bkup": "npm run lint && npm run test-node && npm run test-integration", - "watch": "lerna run watch --no-sort --stream --concurrency 999", - }, - "sys": Object { - "type": "Entry", - }, - "workspaces": Array [ - "packages/*", - ], - }, - ], - Array [ - Object { - "children": Array [], - "content": "test", - "id": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___EntryjsonStringTest0JSONNode", - "internal": Object { - "content": "\\"test\\"", - "contentDigest": "2018-08-13T14:27:12.458Z", - "mediaType": "application/json", - "type": "contentfulJsonTestJsonStringTestJsonNode", + "jsonStringTest": Array [ + "test", + ], + "jsonTest": Object { + "devDependencies": Object { + "babel-cli": "^6.26.0", + "babel-eslint": "^7.2.3", + "babel-jest": "^20.0.3", + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-lodash": "^3.2.11", + "babel-plugin-transform-async-to-generator": "^6.24.1", + "babel-plugin-transform-flow-strip-types": "^6.22.0", + "babel-plugin-transform-runtime": "^6.23.0", + "babel-preset-env": "^1.6.0", + "babel-preset-flow": "^6.23.0", + "babel-preset-react": "^6.24.1", + "babel-preset-stage-0": "^6.24.1", + "babel-register": "^6.26.0", + "babel-runtime": "^6.26.0", + "chokidar": "^1.7.0", + "cross-env": "^5.0.5", + "eslint": "^4.5.0", + "eslint-config-google": "^0.9.1", + "eslint-config-prettier": "^2.5.0", + "eslint-plugin-flow-vars": "^0.5.0", + "eslint-plugin-flowtype": "^2.35.0", + "eslint-plugin-import": "^2.7.0", + "eslint-plugin-jsx-a11y": "^6.0.2", + "eslint-plugin-prettier": "^2.2.0", + "eslint-plugin-react": "^7.3.0", + "flow-bin": "^0.42.0", + "glob": "^7.1.1", + "jest": "^20.0.4", + "jest-cli": "^20.0.4", + "lerna": "^2.1.1", + "plop": "^1.8.1", + "prettier": "^1.7.0", + "prettier-eslint-cli": "4.2.x", + "remotedev-server": "^0.2.3", + "rimraf": "^2.6.1", + }, + "engines": Object { + "yarn": "^1.2.1", + }, + "eslintIgnore": Array [ + "interfaces", + "**/__tests__/fixtures/", + ], + "private": true, + "scripts": Object { + "bootstrap": "yarn && npm run check-versions && lerna run prepublish", + "check-versions": "babel-node scripts/check-versions.js", + "format": "npm run format-packages && npm run format-cache-dir && npm run format-www && npm run format-examples && npm run format-scripts", + "format-cache-dir": "prettier-eslint --write \\"packages/gatsby/cache-dir/*.js\\"", + "format-examples": "prettier-eslint --write \\"examples/**/gatsby-node.js\\" \\"examples/**/gatsby-config.js\\" \\"examples/**/src/**/*.js\\"", + "format-packages": "prettier-eslint --write \\"packages/*/src/**/*.js\\"", + "format-scripts": "prettier-eslint --write \\"scripts/**/*.js\\"", + "format-www": "prettier-eslint --write \\"www/*.js\\" \\"www/src/**/*.js\\"", + "jest": "jest", + "lerna": "lerna", + "lint": "eslint --ext .js,.jsx packages/**/src", + "lint:flow": "babel-node scripts/flow-check.js", + "plop": "plop", + "publish": "lerna publish", + "publish-canary": "lerna publish --canary --yes", + "publish-next": "lerna publish --npm-tag=next", + "remotedev": "remotedev --hostname=localhost --port=19999", + "test": "yarn lint && yarn jest", + "test:update": "jest --updateSnapshot", + "test:watch": "jest --watch", + "test_bkup": "npm run lint && npm run test-node && npm run test-integration", + "watch": "lerna run watch --no-sort --stream --concurrency 999", + }, + "workspaces": Array [ + "packages/*", + ], }, - "parent": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry", + "parent": "JSON-test", "sys": Object { + "contentType___NODE": "JSON-test", + "environmentId": "master", + "firstPublishedAt": "2017-11-28T02:16:10.604Z", + "id": "c71mfnH4QKsSsQmgoaQuq6O", + "locale": "en-US", + "publishedAt": "2018-08-13T14:27:12.458Z", + "publishedVersion": 4, + "spaceId": "rocybtov1ozk", "type": "Entry", }, }, ], Array [ Object { - "children": Array [], "description": "just for testing JSON fields", "displayField": null, "id": "JSON-test", @@ -12631,155 +11660,119 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "type": "ContentfulContentType", }, "name": "JSON-test", - "parent": null, "sys": Object { + "environmentId": "master", + "firstPublishedAt": "2017-11-28T02:15:46.221Z", + "id": "jsonTest", + "locale": "de", + "publishedAt": "2018-08-13T14:21:13.985Z", + "publishedVersion": 3, + "spaceId": "rocybtov1ozk", "type": "ContentType", }, }, ], Array [ Object { - "children": Array [ - "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry___dejsonTestJSONNode", - "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry___dejsonStringTest0JSONNode", - ], - "contentful_id": "c71mfnH4QKsSsQmgoaQuq6O", - "createdAt": "2017-11-28T02:16:10.604Z", + "children": Array [], "id": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry___de", "internal": Object { "contentDigest": "2018-08-13T14:27:12.458Z", "type": "ContentfulJsonTest", }, - "jsonStringTest___NODE": Array [ - "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry___dejsonStringTest0JSONNode", - ], - "jsonTest___NODE": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry___dejsonTestJSONNode", - "node_locale": "de", - "parent": "JSON-test", - "spaceId": "rocybtov1ozk", - "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "jsonTest", - "id": "jsonTest", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 4, - "type": "Entry", - }, - "updatedAt": "2018-08-13T14:27:12.458Z", - }, - ], - Array [ - Object { - "children": Array [], - "devDependencies": Object { - "babel-cli": "^6.26.0", - "babel-eslint": "^7.2.3", - "babel-jest": "^20.0.3", - "babel-plugin-add-module-exports": "^0.2.1", - "babel-plugin-lodash": "^3.2.11", - "babel-plugin-transform-async-to-generator": "^6.24.1", - "babel-plugin-transform-flow-strip-types": "^6.22.0", - "babel-plugin-transform-runtime": "^6.23.0", - "babel-preset-env": "^1.6.0", - "babel-preset-flow": "^6.23.0", - "babel-preset-react": "^6.24.1", - "babel-preset-stage-0": "^6.24.1", - "babel-register": "^6.26.0", - "babel-runtime": "^6.26.0", - "chokidar": "^1.7.0", - "cross-env": "^5.0.5", - "eslint": "^4.5.0", - "eslint-config-google": "^0.9.1", - "eslint-config-prettier": "^2.5.0", - "eslint-plugin-flow-vars": "^0.5.0", - "eslint-plugin-flowtype": "^2.35.0", - "eslint-plugin-import": "^2.7.0", - "eslint-plugin-jsx-a11y": "^6.0.2", - "eslint-plugin-prettier": "^2.2.0", - "eslint-plugin-react": "^7.3.0", - "flow-bin": "^0.42.0", - "glob": "^7.1.1", - "jest": "^20.0.4", - "jest-cli": "^20.0.4", - "lerna": "^2.1.1", - "plop": "^1.8.1", - "prettier": "^1.7.0", - "prettier-eslint-cli": "4.2.x", - "remotedev-server": "^0.2.3", - "rimraf": "^2.6.1", - }, - "engines": Object { - "yarn": "^1.2.1", - }, - "eslintIgnore": Array [ - "interfaces", - "**/__tests__/fixtures/", - ], - "id": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry___dejsonTestJSONNode", - "internal": Object { - "content": "{\\"engines\\":{\\"yarn\\":\\"^1.2.1\\"},\\"private\\":true,\\"scripts\\":{\\"jest\\":\\"jest\\",\\"lint\\":\\"eslint --ext .js,.jsx packages/**/src\\",\\"plop\\":\\"plop\\",\\"test\\":\\"yarn lint && yarn jest\\",\\"lerna\\":\\"lerna\\",\\"watch\\":\\"lerna run watch --no-sort --stream --concurrency 999\\",\\"format\\":\\"npm run format-packages && npm run format-cache-dir && npm run format-www && npm run format-examples && npm run format-scripts\\",\\"publish\\":\\"lerna publish\\",\\"bootstrap\\":\\"yarn && npm run check-versions && lerna run prepublish\\",\\"lint:flow\\":\\"babel-node scripts/flow-check.js\\",\\"remotedev\\":\\"remotedev --hostname=localhost --port=19999\\",\\"test_bkup\\":\\"npm run lint && npm run test-node && npm run test-integration\\",\\"format-www\\":\\"prettier-eslint --write /\\"www/*.js/\\" /\\"www/src/**/*.js/\\"\\",\\"test:watch\\":\\"jest --watch\\",\\"test:update\\":\\"jest --updateSnapshot\\",\\"publish-next\\":\\"lerna publish --npm-tag=next\\",\\"check-versions\\":\\"babel-node scripts/check-versions.js\\",\\"format-scripts\\":\\"prettier-eslint --write /\\"scripts/**/*.js/\\"\\",\\"publish-canary\\":\\"lerna publish --canary --yes\\",\\"format-examples\\":\\"prettier-eslint --write /\\"examples/**/gatsby-node.js/\\" /\\"examples/**/gatsby-config.js/\\" /\\"examples/**/src/**/*.js/\\"\\",\\"format-packages\\":\\"prettier-eslint --write /\\"packages/*/src/**/*.js/\\"\\",\\"format-cache-dir\\":\\"prettier-eslint --write /\\"packages/gatsby/cache-dir/*.js/\\"\\"},\\"workspaces\\":[\\"packages/*\\"],\\"eslintIgnore\\":[\\"interfaces\\",\\"**/__tests__/fixtures/\\"],\\"devDependencies\\":{\\"glob\\":\\"^7.1.1\\",\\"jest\\":\\"^20.0.4\\",\\"plop\\":\\"^1.8.1\\",\\"lerna\\":\\"^2.1.1\\",\\"eslint\\":\\"^4.5.0\\",\\"rimraf\\":\\"^2.6.1\\",\\"chokidar\\":\\"^1.7.0\\",\\"flow-bin\\":\\"^0.42.0\\",\\"jest-cli\\":\\"^20.0.4\\",\\"prettier\\":\\"^1.7.0\\",\\"babel-cli\\":\\"^6.26.0\\",\\"cross-env\\":\\"^5.0.5\\",\\"babel-jest\\":\\"^20.0.3\\",\\"babel-eslint\\":\\"^7.2.3\\",\\"babel-runtime\\":\\"^6.26.0\\",\\"babel-register\\":\\"^6.26.0\\",\\"babel-preset-env\\":\\"^1.6.0\\",\\"remotedev-server\\":\\"^0.2.3\\",\\"babel-preset-flow\\":\\"^6.23.0\\",\\"babel-preset-react\\":\\"^6.24.1\\",\\"babel-plugin-lodash\\":\\"^3.2.11\\",\\"eslint-plugin-react\\":\\"^7.3.0\\",\\"prettier-eslint-cli\\":\\"4.2.x\\",\\"babel-preset-stage-0\\":\\"^6.24.1\\",\\"eslint-config-google\\":\\"^0.9.1\\",\\"eslint-plugin-import\\":\\"^2.7.0\\",\\"eslint-config-prettier\\":\\"^2.5.0\\",\\"eslint-plugin-flowtype\\":\\"^2.35.0\\",\\"eslint-plugin-jsx-a11y\\":\\"^6.0.2\\",\\"eslint-plugin-prettier\\":\\"^2.2.0\\",\\"eslint-plugin-flow-vars\\":\\"^0.5.0\\",\\"babel-plugin-transform-runtime\\":\\"^6.23.0\\",\\"babel-plugin-add-module-exports\\":\\"^0.2.1\\",\\"babel-plugin-transform-flow-strip-types\\":\\"^6.22.0\\",\\"babel-plugin-transform-async-to-generator\\":\\"^6.24.1\\"}}", - "contentDigest": "2018-08-13T14:27:12.458Z", - "mediaType": "application/json", - "type": "contentfulJsonTestJsonTestJsonNode", - }, - "parent": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry___de", - "private": true, - "scripts": Object { - "bootstrap": "yarn && npm run check-versions && lerna run prepublish", - "check-versions": "babel-node scripts/check-versions.js", - "format": "npm run format-packages && npm run format-cache-dir && npm run format-www && npm run format-examples && npm run format-scripts", - "format-cache-dir": "prettier-eslint --write \\"packages/gatsby/cache-dir/*.js\\"", - "format-examples": "prettier-eslint --write \\"examples/**/gatsby-node.js\\" \\"examples/**/gatsby-config.js\\" \\"examples/**/src/**/*.js\\"", - "format-packages": "prettier-eslint --write \\"packages/*/src/**/*.js\\"", - "format-scripts": "prettier-eslint --write \\"scripts/**/*.js\\"", - "format-www": "prettier-eslint --write \\"www/*.js\\" \\"www/src/**/*.js\\"", - "jest": "jest", - "lerna": "lerna", - "lint": "eslint --ext .js,.jsx packages/**/src", - "lint:flow": "babel-node scripts/flow-check.js", - "plop": "plop", - "publish": "lerna publish", - "publish-canary": "lerna publish --canary --yes", - "publish-next": "lerna publish --npm-tag=next", - "remotedev": "remotedev --hostname=localhost --port=19999", - "test": "yarn lint && yarn jest", - "test:update": "jest --updateSnapshot", - "test:watch": "jest --watch", - "test_bkup": "npm run lint && npm run test-node && npm run test-integration", - "watch": "lerna run watch --no-sort --stream --concurrency 999", - }, - "sys": Object { - "type": "Entry", - }, - "workspaces": Array [ - "packages/*", - ], - }, - ], - Array [ - Object { - "children": Array [], - "content": "test", - "id": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry___dejsonStringTest0JSONNode", - "internal": Object { - "content": "\\"test\\"", - "contentDigest": "2018-08-13T14:27:12.458Z", - "mediaType": "application/json", - "type": "contentfulJsonTestJsonStringTestJsonNode", + "jsonStringTest": Array [ + "test", + ], + "jsonTest": Object { + "devDependencies": Object { + "babel-cli": "^6.26.0", + "babel-eslint": "^7.2.3", + "babel-jest": "^20.0.3", + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-lodash": "^3.2.11", + "babel-plugin-transform-async-to-generator": "^6.24.1", + "babel-plugin-transform-flow-strip-types": "^6.22.0", + "babel-plugin-transform-runtime": "^6.23.0", + "babel-preset-env": "^1.6.0", + "babel-preset-flow": "^6.23.0", + "babel-preset-react": "^6.24.1", + "babel-preset-stage-0": "^6.24.1", + "babel-register": "^6.26.0", + "babel-runtime": "^6.26.0", + "chokidar": "^1.7.0", + "cross-env": "^5.0.5", + "eslint": "^4.5.0", + "eslint-config-google": "^0.9.1", + "eslint-config-prettier": "^2.5.0", + "eslint-plugin-flow-vars": "^0.5.0", + "eslint-plugin-flowtype": "^2.35.0", + "eslint-plugin-import": "^2.7.0", + "eslint-plugin-jsx-a11y": "^6.0.2", + "eslint-plugin-prettier": "^2.2.0", + "eslint-plugin-react": "^7.3.0", + "flow-bin": "^0.42.0", + "glob": "^7.1.1", + "jest": "^20.0.4", + "jest-cli": "^20.0.4", + "lerna": "^2.1.1", + "plop": "^1.8.1", + "prettier": "^1.7.0", + "prettier-eslint-cli": "4.2.x", + "remotedev-server": "^0.2.3", + "rimraf": "^2.6.1", + }, + "engines": Object { + "yarn": "^1.2.1", + }, + "eslintIgnore": Array [ + "interfaces", + "**/__tests__/fixtures/", + ], + "private": true, + "scripts": Object { + "bootstrap": "yarn && npm run check-versions && lerna run prepublish", + "check-versions": "babel-node scripts/check-versions.js", + "format": "npm run format-packages && npm run format-cache-dir && npm run format-www && npm run format-examples && npm run format-scripts", + "format-cache-dir": "prettier-eslint --write \\"packages/gatsby/cache-dir/*.js\\"", + "format-examples": "prettier-eslint --write \\"examples/**/gatsby-node.js\\" \\"examples/**/gatsby-config.js\\" \\"examples/**/src/**/*.js\\"", + "format-packages": "prettier-eslint --write \\"packages/*/src/**/*.js\\"", + "format-scripts": "prettier-eslint --write \\"scripts/**/*.js\\"", + "format-www": "prettier-eslint --write \\"www/*.js\\" \\"www/src/**/*.js\\"", + "jest": "jest", + "lerna": "lerna", + "lint": "eslint --ext .js,.jsx packages/**/src", + "lint:flow": "babel-node scripts/flow-check.js", + "plop": "plop", + "publish": "lerna publish", + "publish-canary": "lerna publish --canary --yes", + "publish-next": "lerna publish --npm-tag=next", + "remotedev": "remotedev --hostname=localhost --port=19999", + "test": "yarn lint && yarn jest", + "test:update": "jest --updateSnapshot", + "test:watch": "jest --watch", + "test_bkup": "npm run lint && npm run test-node && npm run test-integration", + "watch": "lerna run watch --no-sort --stream --concurrency 999", + }, + "workspaces": Array [ + "packages/*", + ], }, - "parent": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry___de", + "parent": "JSON-test", "sys": Object { + "contentType___NODE": "JSON-test", + "environmentId": "master", + "firstPublishedAt": "2017-11-28T02:16:10.604Z", + "id": "c71mfnH4QKsSsQmgoaQuq6O", + "locale": "de", + "publishedAt": "2018-08-13T14:27:12.458Z", + "publishedVersion": 4, + "spaceId": "rocybtov1ozk", "type": "Entry", }, }, ], Array [ Object { - "children": Array [], "description": "", "displayField": "title", "id": "Remark Test", @@ -12788,48 +11781,47 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "type": "ContentfulContentType", }, "name": "Remark Test", - "parent": null, "sys": Object { + "environmentId": "master", + "firstPublishedAt": "2018-05-28T08:43:09.218Z", + "id": "remarkTest", + "locale": "en-US", + "publishedAt": "2018-05-28T08:43:09.218Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "ContentType", }, }, ], Array [ Object { - "children": Array [ - "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___EntrycontentTextNode", - ], + "children": Array [], "content___NODE": "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___EntrycontentTextNode", - "contentful_id": "c4L2GhTsJtCseMYM8Wia64i", - "createdAt": "2018-05-28T08:49:06.230Z", "id": "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___Entry", "internal": Object { "contentDigest": "2018-05-28T08:49:06.230Z", "type": "ContentfulRemarkTest", }, - "node_locale": "en-US", "parent": "Remark Test", - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "remarkTest", - "id": "remarkTest", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 1, + "contentType___NODE": "Remark Test", + "environmentId": "master", + "firstPublishedAt": "2018-05-28T08:49:06.230Z", + "id": "c4L2GhTsJtCseMYM8Wia64i", + "locale": "en-US", + "publishedAt": "2018-05-28T08:49:06.230Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "title": "Contentful images inlined in Markdown", - "updatedAt": "2018-05-28T08:49:06.230Z", }, ], Array [ Object { - "children": Array [], - "content": "## Toys + "id": "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___EntrycontentTextNode", + "internal": Object { + "content": "## Toys ![Toys](//images.ctfassets.net/rocybtov1ozk/6t4HKjytPi0mYgs240wkG/6e730b1e6c2a46929239019240c037e6/toys_512pxGREY.png) @@ -12852,9 +11844,12 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff ## Hudson Wall Cup ![Hudson Wall Cup ](//images.ctfassets.net/rocybtov1ozk/Xc0ny7GWsMEMCeASWO2um/af8e29320c04af689798afe96e2345c7/jqvtazcyfwseah9fmysz.jpg)", - "id": "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___EntrycontentTextNode", - "internal": Object { - "content": "## Toys + "contentDigest": "2018-05-28T08:49:06.230Z", + "mediaType": "text/markdown", + "type": "ContentfulNodeTypeText", + }, + "parent": "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___Entry", + "raw": "## Toys ![Toys](//images.ctfassets.net/rocybtov1ozk/6t4HKjytPi0mYgs240wkG/6e730b1e6c2a46929239019240c037e6/toys_512pxGREY.png) @@ -12877,19 +11872,10 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff ## Hudson Wall Cup ![Hudson Wall Cup ](//images.ctfassets.net/rocybtov1ozk/Xc0ny7GWsMEMCeASWO2um/af8e29320c04af689798afe96e2345c7/jqvtazcyfwseah9fmysz.jpg)", - "contentDigest": "2018-05-28T08:49:06.230Z", - "mediaType": "text/markdown", - "type": "contentfulRemarkTestContentTextNode", - }, - "parent": "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___Entry", - "sys": Object { - "type": "Entry", - }, }, ], Array [ Object { - "children": Array [], "description": "", "displayField": "title", "id": "Remark Test", @@ -12898,48 +11884,47 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "type": "ContentfulContentType", }, "name": "Remark Test", - "parent": null, "sys": Object { + "environmentId": "master", + "firstPublishedAt": "2018-05-28T08:43:09.218Z", + "id": "remarkTest", + "locale": "de", + "publishedAt": "2018-05-28T08:43:09.218Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "ContentType", }, }, ], Array [ Object { - "children": Array [ - "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___Entry___decontentTextNode", - ], + "children": Array [], "content___NODE": "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___Entry___decontentTextNode", - "contentful_id": "c4L2GhTsJtCseMYM8Wia64i", - "createdAt": "2018-05-28T08:49:06.230Z", "id": "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___Entry___de", "internal": Object { "contentDigest": "2018-05-28T08:49:06.230Z", "type": "ContentfulRemarkTest", }, - "node_locale": "de", "parent": "Remark Test", - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "remarkTest", - "id": "remarkTest", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 1, + "contentType___NODE": "Remark Test", + "environmentId": "master", + "firstPublishedAt": "2018-05-28T08:49:06.230Z", + "id": "c4L2GhTsJtCseMYM8Wia64i", + "locale": "de", + "publishedAt": "2018-05-28T08:49:06.230Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "title": "Contentful images inlined in Markdown", - "updatedAt": "2018-05-28T08:49:06.230Z", }, ], Array [ Object { - "children": Array [], - "content": "## Toys + "id": "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___Entry___decontentTextNode", + "internal": Object { + "content": "## Toys ![Toys](//images.ctfassets.net/rocybtov1ozk/6t4HKjytPi0mYgs240wkG/6e730b1e6c2a46929239019240c037e6/toys_512pxGREY.png) @@ -12962,9 +11947,12 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff ## Hudson Wall Cup ![Hudson Wall Cup ](//images.ctfassets.net/rocybtov1ozk/Xc0ny7GWsMEMCeASWO2um/af8e29320c04af689798afe96e2345c7/jqvtazcyfwseah9fmysz.jpg)", - "id": "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___Entry___decontentTextNode", - "internal": Object { - "content": "## Toys + "contentDigest": "2018-05-28T08:49:06.230Z", + "mediaType": "text/markdown", + "type": "ContentfulNodeTypeText", + }, + "parent": "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___Entry___de", + "raw": "## Toys ![Toys](//images.ctfassets.net/rocybtov1ozk/6t4HKjytPi0mYgs240wkG/6e730b1e6c2a46929239019240c037e6/toys_512pxGREY.png) @@ -12987,14 +11975,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff ## Hudson Wall Cup ![Hudson Wall Cup ](//images.ctfassets.net/rocybtov1ozk/Xc0ny7GWsMEMCeASWO2um/af8e29320c04af689798afe96e2345c7/jqvtazcyfwseah9fmysz.jpg)", - "contentDigest": "2018-05-28T08:49:06.230Z", - "mediaType": "text/markdown", - "type": "contentfulRemarkTestContentTextNode", - }, - "parent": "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___Entry___de", - "sys": Object { - "type": "Entry", - }, }, ], ] @@ -13005,8 +11985,6 @@ Array [ Array [ Object { "children": Array [], - "contentful_id": "c3wtvPBbBjiMKqKKga8I2Cu", - "createdAt": "2017-06-27T09:35:37.178Z", "description": "Brand logo", "file": Object { "contentType": "image/jpeg", @@ -13025,22 +12003,23 @@ Array [ "contentDigest": "2017-06-27T09:35:37.178Z", "type": "ContentfulAsset", }, - "node_locale": "en-US", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:37.178Z", + "id": "c3wtvPBbBjiMKqKKga8I2Cu", + "locale": "en-US", + "publishedAt": "2017-06-27T09:35:37.178Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Normann Copenhagen", - "updatedAt": "2017-06-27T09:35:37.178Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c3wtvPBbBjiMKqKKga8I2Cu", - "createdAt": "2017-06-27T09:35:37.178Z", "description": "Brand logo", "file": Object { "contentType": "image/jpeg", @@ -13059,22 +12038,23 @@ Array [ "contentDigest": "2017-06-27T09:35:37.178Z", "type": "ContentfulAsset", }, - "node_locale": "de", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:37.178Z", + "id": "c3wtvPBbBjiMKqKKga8I2Cu", + "locale": "de", + "publishedAt": "2017-06-27T09:35:37.178Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Normann Copenhagen", - "updatedAt": "2017-06-27T09:35:37.178Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "KTRF62Q4gg60q6WCsWKw8", - "createdAt": "2017-06-27T09:35:37.064Z", "description": "by Lemnos", "file": Object { "contentType": "image/jpeg", @@ -13093,22 +12073,23 @@ Array [ "contentDigest": "2017-06-27T09:35:37.064Z", "type": "ContentfulAsset", }, - "node_locale": "en-US", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:37.064Z", + "id": "KTRF62Q4gg60q6WCsWKw8", + "locale": "en-US", + "publishedAt": "2017-06-27T09:35:37.064Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "SoSo Wall Clock", - "updatedAt": "2017-06-27T09:35:37.064Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "KTRF62Q4gg60q6WCsWKw8", - "createdAt": "2017-06-27T09:35:37.064Z", "description": "by Lemnos", "file": Object { "contentType": "image/jpeg", @@ -13127,22 +12108,23 @@ Array [ "contentDigest": "2017-06-27T09:35:37.064Z", "type": "ContentfulAsset", }, - "node_locale": "de", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:37.064Z", + "id": "KTRF62Q4gg60q6WCsWKw8", + "locale": "de", + "publishedAt": "2017-06-27T09:35:37.064Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "SoSo Wall Clock", - "updatedAt": "2017-06-27T09:35:37.064Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "Xc0ny7GWsMEMCeASWO2um", - "createdAt": "2017-06-27T09:35:37.027Z", "description": "Merchandise image", "file": Object { "contentType": "image/jpeg", @@ -13161,22 +12143,23 @@ Array [ "contentDigest": "2017-06-27T09:35:37.027Z", "type": "ContentfulAsset", }, - "node_locale": "en-US", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:37.027Z", + "id": "Xc0ny7GWsMEMCeASWO2um", + "locale": "en-US", + "publishedAt": "2017-06-27T09:35:37.027Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Hudson Wall Cup ", - "updatedAt": "2017-06-27T09:35:37.027Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "Xc0ny7GWsMEMCeASWO2um", - "createdAt": "2017-06-27T09:35:37.027Z", "description": "Merchandise image", "file": Object { "contentType": "image/jpeg", @@ -13195,22 +12178,23 @@ Array [ "contentDigest": "2017-06-27T09:35:37.027Z", "type": "ContentfulAsset", }, - "node_locale": "de", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:37.027Z", + "id": "Xc0ny7GWsMEMCeASWO2um", + "locale": "de", + "publishedAt": "2017-06-27T09:35:37.027Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Hudson Wall Cup ", - "updatedAt": "2017-06-27T09:35:37.027Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c2Y8LhXLnYAYqKCGEWG4EKI", - "createdAt": "2017-06-27T09:35:37.012Z", "description": "company logo", "file": Object { "contentType": "image/jpeg", @@ -13229,22 +12213,23 @@ Array [ "contentDigest": "2017-06-27T09:35:37.012Z", "type": "ContentfulAsset", }, - "node_locale": "en-US", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:37.012Z", + "id": "c2Y8LhXLnYAYqKCGEWG4EKI", + "locale": "en-US", + "publishedAt": "2017-06-27T09:35:37.012Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Lemnos", - "updatedAt": "2017-06-27T09:35:37.012Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c2Y8LhXLnYAYqKCGEWG4EKI", - "createdAt": "2017-06-27T09:35:37.012Z", "description": "company logo", "file": Object { "contentType": "image/jpeg", @@ -13263,22 +12248,23 @@ Array [ "contentDigest": "2017-06-27T09:35:37.012Z", "type": "ContentfulAsset", }, - "node_locale": "de", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:37.012Z", + "id": "c2Y8LhXLnYAYqKCGEWG4EKI", + "locale": "de", + "publishedAt": "2017-06-27T09:35:37.012Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Lemnos", - "updatedAt": "2017-06-27T09:35:37.012Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c6t4HKjytPi0mYgs240wkG", - "createdAt": "2017-06-27T09:35:36.633Z", "description": "Category icon set", "file": Object { "contentType": "image/png", @@ -13297,22 +12283,23 @@ Array [ "contentDigest": "2017-06-27T09:35:36.633Z", "type": "ContentfulAsset", }, - "node_locale": "en-US", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:36.633Z", + "id": "c6t4HKjytPi0mYgs240wkG", + "locale": "en-US", + "publishedAt": "2017-06-27T09:35:36.633Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Toys", - "updatedAt": "2017-06-27T09:35:36.633Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c6t4HKjytPi0mYgs240wkG", - "createdAt": "2017-06-27T09:35:36.633Z", "description": "Category icon set", "file": Object { "contentType": "image/png", @@ -13331,22 +12318,23 @@ Array [ "contentDigest": "2017-06-27T09:35:36.633Z", "type": "ContentfulAsset", }, - "node_locale": "de", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:36.633Z", + "id": "c6t4HKjytPi0mYgs240wkG", + "locale": "de", + "publishedAt": "2017-06-27T09:35:36.633Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Toys", - "updatedAt": "2017-06-27T09:35:36.633Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c1MgbdJNTsMWKI0W68oYqkU", - "createdAt": "2017-06-27T09:35:36.182Z", "description": "Brand logo", "file": Object { "contentType": "image/jpeg", @@ -13365,22 +12353,23 @@ Array [ "contentDigest": "2017-06-27T09:35:36.182Z", "type": "ContentfulAsset", }, - "node_locale": "en-US", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:36.182Z", + "id": "c1MgbdJNTsMWKI0W68oYqkU", + "locale": "en-US", + "publishedAt": "2017-06-27T09:35:36.182Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Chive logo", - "updatedAt": "2017-06-27T09:35:36.182Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c1MgbdJNTsMWKI0W68oYqkU", - "createdAt": "2017-06-27T09:35:36.182Z", "description": "Brand logo", "file": Object { "contentType": "image/jpeg", @@ -13399,22 +12388,23 @@ Array [ "contentDigest": "2017-06-27T09:35:36.182Z", "type": "ContentfulAsset", }, - "node_locale": "de", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:36.182Z", + "id": "c1MgbdJNTsMWKI0W68oYqkU", + "locale": "de", + "publishedAt": "2017-06-27T09:35:36.182Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Chive logo", - "updatedAt": "2017-06-27T09:35:36.182Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c6m5AJ9vMPKc8OUoQeoCS4o", - "createdAt": "2017-06-27T09:35:36.172Z", "description": "category icon", "file": Object { "contentType": "image/png", @@ -13433,22 +12423,23 @@ Array [ "contentDigest": "2017-06-27T09:35:36.172Z", "type": "ContentfulAsset", }, - "node_locale": "en-US", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:36.172Z", + "id": "c6m5AJ9vMPKc8OUoQeoCS4o", + "locale": "en-US", + "publishedAt": "2017-06-27T09:35:36.172Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Home and Kitchen", - "updatedAt": "2017-06-27T09:35:36.172Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c6m5AJ9vMPKc8OUoQeoCS4o", - "createdAt": "2017-06-27T09:35:36.172Z", "description": "category icon", "file": Object { "contentType": "image/png", @@ -13467,22 +12458,23 @@ Array [ "contentDigest": "2017-06-27T09:35:36.172Z", "type": "ContentfulAsset", }, - "node_locale": "de", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:36.172Z", + "id": "c6m5AJ9vMPKc8OUoQeoCS4o", + "locale": "de", + "publishedAt": "2017-06-27T09:35:36.172Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Home and Kitchen", - "updatedAt": "2017-06-27T09:35:36.172Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c4zj1ZOfHgQ8oqgaSKm4Qo2", - "createdAt": "2017-06-27T09:35:36.168Z", "description": "Brand logo", "file": Object { "contentType": "image/jpeg", @@ -13501,22 +12493,23 @@ Array [ "contentDigest": "2017-06-27T09:35:36.168Z", "type": "ContentfulAsset", }, - "node_locale": "en-US", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:36.168Z", + "id": "c4zj1ZOfHgQ8oqgaSKm4Qo2", + "locale": "en-US", + "publishedAt": "2017-06-27T09:35:36.168Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Playsam", - "updatedAt": "2017-06-27T09:35:36.168Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c4zj1ZOfHgQ8oqgaSKm4Qo2", - "createdAt": "2017-06-27T09:35:36.168Z", "description": "Brand logo", "file": Object { "contentType": "image/jpeg", @@ -13535,22 +12528,23 @@ Array [ "contentDigest": "2017-06-27T09:35:36.168Z", "type": "ContentfulAsset", }, - "node_locale": "de", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:36.168Z", + "id": "c4zj1ZOfHgQ8oqgaSKm4Qo2", + "locale": "de", + "publishedAt": "2017-06-27T09:35:36.168Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Playsam", - "updatedAt": "2017-06-27T09:35:36.168Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "wtrHxeu3zEoEce2MokCSi", - "createdAt": "2017-06-27T09:35:36.037Z", "description": "Merchandise photo", "file": Object { "contentType": "image/jpeg", @@ -13569,22 +12563,23 @@ Array [ "contentDigest": "2017-06-27T09:35:36.037Z", "type": "ContentfulAsset", }, - "node_locale": "en-US", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:36.037Z", + "id": "wtrHxeu3zEoEce2MokCSi", + "locale": "en-US", + "publishedAt": "2017-06-27T09:35:36.037Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Playsam Streamliner", - "updatedAt": "2017-06-27T09:35:36.037Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "wtrHxeu3zEoEce2MokCSi", - "createdAt": "2017-06-27T09:35:36.037Z", "description": "Merchandise photo", "file": Object { "contentType": "image/jpeg", @@ -13603,22 +12598,23 @@ Array [ "contentDigest": "2017-06-27T09:35:36.037Z", "type": "ContentfulAsset", }, - "node_locale": "de", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:36.037Z", + "id": "wtrHxeu3zEoEce2MokCSi", + "locale": "de", + "publishedAt": "2017-06-27T09:35:36.037Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Playsam Streamliner", - "updatedAt": "2017-06-27T09:35:36.037Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c10TkaLheGeQG6qQGqWYqUI", - "createdAt": "2017-06-27T09:35:36.032Z", "description": "Merchandise photo", "file": Object { "contentType": "image/jpeg", @@ -13637,22 +12633,23 @@ Array [ "contentDigest": "2017-06-27T09:35:36.032Z", "type": "ContentfulAsset", }, - "node_locale": "en-US", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:36.032Z", + "id": "c10TkaLheGeQG6qQGqWYqUI", + "locale": "en-US", + "publishedAt": "2017-06-27T09:35:36.032Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Whisk beaters", - "updatedAt": "2017-06-27T09:35:36.032Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c10TkaLheGeQG6qQGqWYqUI", - "createdAt": "2017-06-27T09:35:36.032Z", "description": "Merchandise photo", "file": Object { "contentType": "image/jpeg", @@ -13671,22 +12668,23 @@ Array [ "contentDigest": "2017-06-27T09:35:36.032Z", "type": "ContentfulAsset", }, - "node_locale": "de", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:36.032Z", + "id": "c10TkaLheGeQG6qQGqWYqUI", + "locale": "de", + "publishedAt": "2017-06-27T09:35:36.032Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "Whisk beaters", - "updatedAt": "2017-06-27T09:35:36.032Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c6s3iG2OVmoUcosmA8ocqsG", - "createdAt": "2017-06-27T09:35:35.994Z", "description": "Category icon set", "file": Object { "contentType": "image/png", @@ -13705,22 +12703,23 @@ Array [ "contentDigest": "2017-06-27T09:35:35.994Z", "type": "ContentfulAsset", }, - "node_locale": "en-US", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:35.994Z", + "id": "c6s3iG2OVmoUcosmA8ocqsG", + "locale": "en-US", + "publishedAt": "2017-06-27T09:35:35.994Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "House icon", - "updatedAt": "2017-06-27T09:35:35.994Z", }, ], Array [ Object { "children": Array [], - "contentful_id": "c6s3iG2OVmoUcosmA8ocqsG", - "createdAt": "2017-06-27T09:35:35.994Z", "description": "Category icon set", "file": Object { "contentType": "image/png", @@ -13739,15 +12738,18 @@ Array [ "contentDigest": "2017-06-27T09:35:35.994Z", "type": "ContentfulAsset", }, - "node_locale": "de", "parent": null, - "spaceId": "rocybtov1ozk", "sys": Object { - "revision": 1, + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:35.994Z", + "id": "c6s3iG2OVmoUcosmA8ocqsG", + "locale": "de", + "publishedAt": "2017-06-27T09:35:35.994Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Asset", }, "title": "House icon", - "updatedAt": "2017-06-27T09:35:35.994Z", }, ], ] @@ -13757,7 +12759,6 @@ exports[`Skip existing nodes in warm build creates nodes for each entry 1`] = ` Array [ Array [ Object { - "children": Array [], "description": null, "displayField": "title", "id": "Category", @@ -13766,86 +12767,130 @@ Array [ "type": "ContentfulContentType", }, "name": "Category", - "parent": null, "sys": Object { + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:31.492Z", + "id": "c6XwpTaSiiI2Ak2Ww0oi6qa", + "locale": "en-US", + "publishedAt": "2017-06-27T09:40:52.685Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "ContentType", }, }, ], Array [ Object { - "categoryDescription___NODE": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___EntrycategoryDescriptionTextNode", - "children": Array [ - "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___EntrytitleTextNode", - "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___EntrycategoryDescriptionTextNode", + "categoryDescription___NODE": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___EntrycategoryDescriptionTextNode", + "children": Array [], + "icon___NODE": "rocybtov1ozk___c6m5AJ9vMPKc8OUoQeoCS4o___Asset", + "id": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry", + "internal": Object { + "contentDigest": "2020-06-30T11:22:54.201Z", + "type": "ContentfulCategory", + }, + "parent": "Category", + "product___NODE": Array [ + "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry", + "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry", + "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry", ], - "contentful_id": "c24DPGBDeGEaYy8ms4Y8QMQ", - "createdAt": "2017-06-27T09:35:44.992Z", + "sys": Object { + "contentType___NODE": "Category", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.000Z", + "id": "c7LAnCobuuWYSqks6wAwY2a", + "locale": "en-US", + "publishedAt": "2020-06-30T11:22:54.201Z", + "publishedVersion": 4, + "spaceId": "rocybtov1ozk", + "type": "Entry", + }, + "title___NODE": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___EntrytitleTextNode", + }, + ], + Array [ + Object { + "categoryDescription___NODE": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___EntrycategoryDescriptionTextNode", + "children": Array [], "icon___NODE": "rocybtov1ozk___c6t4HKjytPi0mYgs240wkG___Asset", "id": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry", "internal": Object { "contentDigest": "2017-06-27T09:46:43.477Z", "type": "ContentfulCategory", }, - "node_locale": "en-US", "parent": "Category", "product___NODE": Array [ "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry", ], - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "6XwpTaSiiI2Ak2Ww0oi6qa", - "id": "c6XwpTaSiiI2Ak2Ww0oi6qa", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Category", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.992Z", + "id": "c24DPGBDeGEaYy8ms4Y8QMQ", + "locale": "en-US", + "publishedAt": "2017-06-27T09:46:43.477Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "title___NODE": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___EntrytitleTextNode", - "updatedAt": "2017-06-27T09:46:43.477Z", }, ], Array [ Object { - "children": Array [], + "id": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___EntrytitleTextNode", + "internal": Object { + "content": "Home & Kitchen", + "contentDigest": "2020-06-30T11:22:54.201Z", + "mediaType": "text/markdown", + "type": "ContentfulNodeTypeText", + }, + "parent": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry", + "raw": "Home & Kitchen", + }, + ], + Array [ + Object { + "id": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___EntrycategoryDescriptionTextNode", + "internal": Object { + "content": "Shop for furniture, bedding, bath, vacuums, kitchen products, and more", + "contentDigest": "2020-06-30T11:22:54.201Z", + "mediaType": "text/markdown", + "type": "ContentfulNodeTypeText", + }, + "parent": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry", + "raw": "Shop for furniture, bedding, bath, vacuums, kitchen products, and more", + }, + ], + Array [ + Object { "id": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___EntrytitleTextNode", "internal": Object { "content": "Toys", "contentDigest": "2017-06-27T09:46:43.477Z", "mediaType": "text/markdown", - "type": "contentfulCategoryTitleTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry", - "sys": Object { - "type": "Entry", - }, - "title": "Toys", + "raw": "Toys", }, ], Array [ Object { - "categoryDescription": "Shop for toys, games, educational aids", - "children": Array [], "id": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___EntrycategoryDescriptionTextNode", "internal": Object { "content": "Shop for toys, games, educational aids", "contentDigest": "2017-06-27T09:46:43.477Z", "mediaType": "text/markdown", - "type": "contentfulCategoryCategoryDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry", - "sys": Object { - "type": "Entry", - }, + "raw": "Shop for toys, games, educational aids", }, ], Array [ Object { - "children": Array [], "description": null, "displayField": "title", "id": "Category", @@ -13854,8 +12899,14 @@ Array [ "type": "ContentfulContentType", }, "name": "Category", - "parent": null, "sys": Object { + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:31.492Z", + "id": "c6XwpTaSiiI2Ak2Ww0oi6qa", + "locale": "de", + "publishedAt": "2017-06-27T09:40:52.685Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "ContentType", }, }, @@ -13863,150 +12914,115 @@ Array [ Array [ Object { "categoryDescription___NODE": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry___decategoryDescriptionTextNode", - "children": Array [ - "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry___detitleTextNode", - "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry___decategoryDescriptionTextNode", - ], - "contentful_id": "c7LAnCobuuWYSqks6wAwY2a", - "createdAt": "2017-06-27T09:35:44.000Z", + "children": Array [], "icon___NODE": "rocybtov1ozk___c6m5AJ9vMPKc8OUoQeoCS4o___Asset___de", "id": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry___de", "internal": Object { "contentDigest": "2020-06-30T11:22:54.201Z", "type": "ContentfulCategory", }, - "node_locale": "de", "parent": "Category", "product___NODE": Array [ "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry___de", "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry___de", "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry___de", ], - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "6XwpTaSiiI2Ak2Ww0oi6qa", - "id": "c6XwpTaSiiI2Ak2Ww0oi6qa", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 4, + "contentType___NODE": "Category", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.000Z", + "id": "c7LAnCobuuWYSqks6wAwY2a", + "locale": "de", + "publishedAt": "2020-06-30T11:22:54.201Z", + "publishedVersion": 4, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "title___NODE": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry___detitleTextNode", - "updatedAt": "2020-06-30T11:22:54.201Z", }, ], Array [ Object { "categoryDescription___NODE": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry___decategoryDescriptionTextNode", - "children": Array [ - "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry___detitleTextNode", - "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry___decategoryDescriptionTextNode", - ], - "contentful_id": "c24DPGBDeGEaYy8ms4Y8QMQ", - "createdAt": "2017-06-27T09:35:44.992Z", + "children": Array [], "icon___NODE": "rocybtov1ozk___c6t4HKjytPi0mYgs240wkG___Asset___de", "id": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry___de", "internal": Object { "contentDigest": "2017-06-27T09:46:43.477Z", "type": "ContentfulCategory", }, - "node_locale": "de", "parent": "Category", "product___NODE": Array [ "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry___de", ], - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "6XwpTaSiiI2Ak2Ww0oi6qa", - "id": "c6XwpTaSiiI2Ak2Ww0oi6qa", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Category", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.992Z", + "id": "c24DPGBDeGEaYy8ms4Y8QMQ", + "locale": "de", + "publishedAt": "2017-06-27T09:46:43.477Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "title___NODE": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry___detitleTextNode", - "updatedAt": "2017-06-27T09:46:43.477Z", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry___detitleTextNode", "internal": Object { "content": "Haus & Küche", "contentDigest": "2020-06-30T11:22:54.201Z", "mediaType": "text/markdown", - "type": "contentfulCategoryTitleTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry___de", - "sys": Object { - "type": "Entry", - }, - "title": "Haus & Küche", + "raw": "Haus & Küche", }, ], Array [ Object { - "categoryDescription": "Shop für Möbel, Bettwäsche, Bad, Staubsauger, Küchenprodukte und vieles mehr", - "children": Array [], "id": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry___decategoryDescriptionTextNode", "internal": Object { "content": "Shop für Möbel, Bettwäsche, Bad, Staubsauger, Küchenprodukte und vieles mehr", "contentDigest": "2020-06-30T11:22:54.201Z", "mediaType": "text/markdown", - "type": "contentfulCategoryCategoryDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry___de", - "sys": Object { - "type": "Entry", - }, + "raw": "Shop für Möbel, Bettwäsche, Bad, Staubsauger, Küchenprodukte und vieles mehr", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry___detitleTextNode", "internal": Object { "content": "Spielzeug", "contentDigest": "2017-06-27T09:46:43.477Z", "mediaType": "text/markdown", - "type": "contentfulCategoryTitleTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry___de", - "sys": Object { - "type": "Entry", - }, - "title": "Spielzeug", + "raw": "Spielzeug", }, ], Array [ Object { - "categoryDescription": "Spielzeugladen, Spiele, Lernhilfen", - "children": Array [], "id": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry___decategoryDescriptionTextNode", "internal": Object { "content": "Spielzeugladen, Spiele, Lernhilfen", "contentDigest": "2017-06-27T09:46:43.477Z", "mediaType": "text/markdown", - "type": "contentfulCategoryCategoryDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry___de", - "sys": Object { - "type": "Entry", - }, + "raw": "Spielzeugladen, Spiele, Lernhilfen", }, ], Array [ Object { - "children": Array [], "description": null, "displayField": "companyName", "id": "Brand", @@ -14015,22 +13031,23 @@ Array [ "type": "ContentfulContentType", }, "name": "Brand", - "parent": null, "sys": Object { + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:31.534Z", + "id": "sFzTZbSuM8coEwygeUYes", + "locale": "en-US", + "publishedAt": "2017-06-27T09:41:09.339Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "ContentType", }, }, ], Array [ Object { - "children": Array [ - "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___EntrycompanyNameTextNode", - "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___EntrycompanyDescriptionTextNode", - ], + "children": Array [], "companyDescription___NODE": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___EntrycompanyDescriptionTextNode", "companyName___NODE": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___EntrycompanyNameTextNode", - "contentful_id": "c651CQ8rLoIYCeY6G0QG22q", - "createdAt": "2017-06-27T09:35:43.997Z", "email": "normann@normann-copenhagen.com", "id": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___Entry", "internal": Object { @@ -14038,7 +13055,6 @@ Array [ "type": "ContentfulBrand", }, "logo___NODE": "rocybtov1ozk___c3wtvPBbBjiMKqKKga8I2Cu___Asset", - "node_locale": "en-US", "parent": "Brand", "phone": Array [ "+45 35 55 44 59", @@ -14047,34 +13063,26 @@ Array [ "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry", "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry", ], - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "sFzTZbSuM8coEwygeUYes", - "id": "sFzTZbSuM8coEwygeUYes", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Brand", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:43.997Z", + "id": "c651CQ8rLoIYCeY6G0QG22q", + "locale": "en-US", + "publishedAt": "2017-06-27T09:55:16.820Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "twitter": "https://twitter.com/NormannCPH", - "updatedAt": "2017-06-27T09:55:16.820Z", "website": "http://www.normann-copenhagen.com/", }, ], Array [ Object { - "children": Array [ - "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___EntrycompanyNameTextNode", - "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___EntrycompanyDescriptionTextNode", - ], + "children": Array [], "companyDescription___NODE": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___EntrycompanyDescriptionTextNode", "companyName___NODE": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___EntrycompanyNameTextNode", - "contentful_id": "c4LgMotpNF6W20YKmuemW0a", - "createdAt": "2017-06-27T09:35:44.396Z", "email": "info@acgears.com", "id": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry", "internal": Object { @@ -14082,7 +13090,6 @@ Array [ "type": "ContentfulBrand", }, "logo___NODE": "rocybtov1ozk___c2Y8LhXLnYAYqKCGEWG4EKI___Asset", - "node_locale": "en-US", "parent": "Brand", "phone": Array [ "+1 212 260 2269", @@ -14090,116 +13097,93 @@ Array [ "product___NODE": Array [ "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry", ], - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "sFzTZbSuM8coEwygeUYes", - "id": "sFzTZbSuM8coEwygeUYes", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Brand", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.396Z", + "id": "c4LgMotpNF6W20YKmuemW0a", + "locale": "en-US", + "publishedAt": "2017-06-27T09:51:15.647Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, - "updatedAt": "2017-06-27T09:51:15.647Z", "website": "http://www.lemnos.jp/en/", }, ], Array [ Object { - "children": Array [ - "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___EntrycompanyNameTextNode", - "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___EntrycompanyDescriptionTextNode", - ], + "children": Array [], "companyDescription___NODE": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___EntrycompanyDescriptionTextNode", "companyName___NODE": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___EntrycompanyNameTextNode", - "contentful_id": "JrePkDVYomE8AwcuCUyMi", - "createdAt": "2017-06-27T09:35:44.988Z", "id": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___Entry", "internal": Object { "contentDigest": "2017-06-27T09:50:36.937Z", "type": "ContentfulBrand", }, "logo___NODE": "rocybtov1ozk___c4zj1ZOfHgQ8oqgaSKm4Qo2___Asset", - "node_locale": "en-US", "parent": "Brand", "product___NODE": Array [ "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry", ], - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "sFzTZbSuM8coEwygeUYes", - "id": "sFzTZbSuM8coEwygeUYes", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Brand", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.988Z", + "id": "JrePkDVYomE8AwcuCUyMi", + "locale": "en-US", + "publishedAt": "2017-06-27T09:50:36.937Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, - "updatedAt": "2017-06-27T09:50:36.937Z", "website": "http://playsam.com/", }, ], Array [ Object { - "children": Array [], - "companyName": "Normann Copenhagen", "id": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___EntrycompanyNameTextNode", "internal": Object { "content": "Normann Copenhagen", "contentDigest": "2017-06-27T09:55:16.820Z", "mediaType": "text/markdown", - "type": "contentfulBrandCompanyNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___Entry", - "sys": Object { - "type": "Entry", - }, + "raw": "Normann Copenhagen", }, ], Array [ Object { - "children": Array [], - "companyDescription": "Normann Copenhagen is a way of living - a mindset. We love to challenge the conventional design rules. This is why you will find traditional materials put into untraditional use such as a Stone Hook made of Icelandic stones, a vase made out of silicon and last but not least a dog made out of plastic.", "id": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___EntrycompanyDescriptionTextNode", "internal": Object { "content": "Normann Copenhagen is a way of living - a mindset. We love to challenge the conventional design rules. This is why you will find traditional materials put into untraditional use such as a Stone Hook made of Icelandic stones, a vase made out of silicon and last but not least a dog made out of plastic.", "contentDigest": "2017-06-27T09:55:16.820Z", "mediaType": "text/markdown", - "type": "contentfulBrandCompanyDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___Entry", - "sys": Object { - "type": "Entry", - }, + "raw": "Normann Copenhagen is a way of living - a mindset. We love to challenge the conventional design rules. This is why you will find traditional materials put into untraditional use such as a Stone Hook made of Icelandic stones, a vase made out of silicon and last but not least a dog made out of plastic.", }, ], Array [ Object { - "children": Array [], - "companyName": "Lemnos", "id": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___EntrycompanyNameTextNode", "internal": Object { "content": "Lemnos", "contentDigest": "2017-06-27T09:51:15.647Z", "mediaType": "text/markdown", - "type": "contentfulBrandCompanyNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry", - "sys": Object { - "type": "Entry", - }, + "raw": "Lemnos", }, ], Array [ Object { - "children": Array [], - "companyDescription": "TAKATA Lemnos Inc. was founded in 1947 as a brass casting manufacturing industry in Takaoka-city, Toyama Prefecture, Japan and we launched out into the full-scale business trade with Seiko Clock Co., Ltd. since 1966. + "id": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___EntrycompanyDescriptionTextNode", + "internal": Object { + "content": "TAKATA Lemnos Inc. was founded in 1947 as a brass casting manufacturing industry in Takaoka-city, Toyama Prefecture, Japan and we launched out into the full-scale business trade with Seiko Clock Co., Ltd. since 1966. We entered into the development for the original planning from late 1980 and \\"Lemnos Brand\\" recognized as the global design clock by a masterpiece \\"HOLA\\" designed by Kazuo KAWASAKI which released in 1989. @@ -14210,9 +13194,12 @@ Lemnos brand products are now highly praised from the design shops and the inter In recent years, we also have been given high priority to develop interior accessories making full use of our traditional techniques by the founding manufacturer and we always focus our minds on the development for the new Lemnos products in the new market. Our Lemnos products are made carefully by our craftsmen finely honed skillful techniques in Japan. They surely bring out the attractiveness of the materials to the maximum and create fine products not being influenced on the fashion trend accordingly. TAKATA Lemnos Inc. definitely would like to be innovative and continuously propose the beauty lasts forever.", - "id": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___EntrycompanyDescriptionTextNode", - "internal": Object { - "content": "TAKATA Lemnos Inc. was founded in 1947 as a brass casting manufacturing industry in Takaoka-city, Toyama Prefecture, Japan and we launched out into the full-scale business trade with Seiko Clock Co., Ltd. since 1966. + "contentDigest": "2017-06-27T09:51:15.647Z", + "mediaType": "text/markdown", + "type": "ContentfulNodeTypeText", + }, + "parent": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry", + "raw": "TAKATA Lemnos Inc. was founded in 1947 as a brass casting manufacturing industry in Takaoka-city, Toyama Prefecture, Japan and we launched out into the full-scale business trade with Seiko Clock Co., Ltd. since 1966. We entered into the development for the original planning from late 1980 and \\"Lemnos Brand\\" recognized as the global design clock by a masterpiece \\"HOLA\\" designed by Kazuo KAWASAKI which released in 1989. @@ -14223,53 +13210,36 @@ Lemnos brand products are now highly praised from the design shops and the inter In recent years, we also have been given high priority to develop interior accessories making full use of our traditional techniques by the founding manufacturer and we always focus our minds on the development for the new Lemnos products in the new market. Our Lemnos products are made carefully by our craftsmen finely honed skillful techniques in Japan. They surely bring out the attractiveness of the materials to the maximum and create fine products not being influenced on the fashion trend accordingly. TAKATA Lemnos Inc. definitely would like to be innovative and continuously propose the beauty lasts forever.", - "contentDigest": "2017-06-27T09:51:15.647Z", - "mediaType": "text/markdown", - "type": "contentfulBrandCompanyDescriptionTextNode", - }, - "parent": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry", - "sys": Object { - "type": "Entry", - }, }, ], Array [ Object { - "children": Array [], - "companyName": "Playsam", "id": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___EntrycompanyNameTextNode", "internal": Object { "content": "Playsam", "contentDigest": "2017-06-27T09:50:36.937Z", "mediaType": "text/markdown", - "type": "contentfulBrandCompanyNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___Entry", - "sys": Object { - "type": "Entry", - }, + "raw": "Playsam", }, ], Array [ Object { - "children": Array [], - "companyDescription": "Playsam is the leading Scandinavian design company for executive wooden toy gift. Scandinavian design playful creativity, integrity and sophistication are Playsam. Scandinavian design and wooden toy makes Playsam gift lovely to the world of design since 1984.", "id": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___EntrycompanyDescriptionTextNode", "internal": Object { "content": "Playsam is the leading Scandinavian design company for executive wooden toy gift. Scandinavian design playful creativity, integrity and sophistication are Playsam. Scandinavian design and wooden toy makes Playsam gift lovely to the world of design since 1984.", "contentDigest": "2017-06-27T09:50:36.937Z", "mediaType": "text/markdown", - "type": "contentfulBrandCompanyDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___Entry", - "sys": Object { - "type": "Entry", - }, + "raw": "Playsam is the leading Scandinavian design company for executive wooden toy gift. Scandinavian design playful creativity, integrity and sophistication are Playsam. Scandinavian design and wooden toy makes Playsam gift lovely to the world of design since 1984.", }, ], Array [ Object { - "children": Array [], "description": null, "displayField": "companyName", "id": "Brand", @@ -14278,22 +13248,23 @@ Our Lemnos products are made carefully by our craftsmen finely honed skillful te "type": "ContentfulContentType", }, "name": "Brand", - "parent": null, "sys": Object { + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:31.534Z", + "id": "sFzTZbSuM8coEwygeUYes", + "locale": "de", + "publishedAt": "2017-06-27T09:41:09.339Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "ContentType", }, }, ], Array [ Object { - "children": Array [ - "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___Entry___decompanyNameTextNode", - "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___Entry___decompanyDescriptionTextNode", - ], + "children": Array [], "companyDescription___NODE": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___Entry___decompanyDescriptionTextNode", "companyName___NODE": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___Entry___decompanyNameTextNode", - "contentful_id": "c651CQ8rLoIYCeY6G0QG22q", - "createdAt": "2017-06-27T09:35:43.997Z", "email": "normann@normann-copenhagen.com", "id": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___Entry___de", "internal": Object { @@ -14301,7 +13272,6 @@ Our Lemnos products are made carefully by our craftsmen finely honed skillful te "type": "ContentfulBrand", }, "logo___NODE": "rocybtov1ozk___c3wtvPBbBjiMKqKKga8I2Cu___Asset___de", - "node_locale": "de", "parent": "Brand", "phone": Array [ "+45 35 55 44 59", @@ -14310,34 +13280,26 @@ Our Lemnos products are made carefully by our craftsmen finely honed skillful te "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry___de", "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry___de", ], - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "sFzTZbSuM8coEwygeUYes", - "id": "sFzTZbSuM8coEwygeUYes", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Brand", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:43.997Z", + "id": "c651CQ8rLoIYCeY6G0QG22q", + "locale": "de", + "publishedAt": "2017-06-27T09:55:16.820Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "twitter": "https://twitter.com/NormannCPH", - "updatedAt": "2017-06-27T09:55:16.820Z", "website": "http://www.normann-copenhagen.com/", }, ], Array [ Object { - "children": Array [ - "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry___decompanyNameTextNode", - "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry___decompanyDescriptionTextNode", - ], + "children": Array [], "companyDescription___NODE": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry___decompanyDescriptionTextNode", "companyName___NODE": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry___decompanyNameTextNode", - "contentful_id": "c4LgMotpNF6W20YKmuemW0a", - "createdAt": "2017-06-27T09:35:44.396Z", "email": "info@acgears.com", "id": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry___de", "internal": Object { @@ -14345,7 +13307,6 @@ Our Lemnos products are made carefully by our craftsmen finely honed skillful te "type": "ContentfulBrand", }, "logo___NODE": "rocybtov1ozk___c2Y8LhXLnYAYqKCGEWG4EKI___Asset___de", - "node_locale": "de", "parent": "Brand", "phone": Array [ "+1 212 260 2269", @@ -14353,116 +13314,93 @@ Our Lemnos products are made carefully by our craftsmen finely honed skillful te "product___NODE": Array [ "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry___de", ], - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "sFzTZbSuM8coEwygeUYes", - "id": "sFzTZbSuM8coEwygeUYes", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Brand", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.396Z", + "id": "c4LgMotpNF6W20YKmuemW0a", + "locale": "de", + "publishedAt": "2017-06-27T09:51:15.647Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, - "updatedAt": "2017-06-27T09:51:15.647Z", "website": "http://www.lemnos.jp/en/", }, ], Array [ Object { - "children": Array [ - "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___Entry___decompanyNameTextNode", - "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___Entry___decompanyDescriptionTextNode", - ], + "children": Array [], "companyDescription___NODE": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___Entry___decompanyDescriptionTextNode", "companyName___NODE": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___Entry___decompanyNameTextNode", - "contentful_id": "JrePkDVYomE8AwcuCUyMi", - "createdAt": "2017-06-27T09:35:44.988Z", "id": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___Entry___de", "internal": Object { "contentDigest": "2017-06-27T09:50:36.937Z", "type": "ContentfulBrand", }, "logo___NODE": "rocybtov1ozk___c4zj1ZOfHgQ8oqgaSKm4Qo2___Asset___de", - "node_locale": "de", "parent": "Brand", "product___NODE": Array [ "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry___de", ], - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "sFzTZbSuM8coEwygeUYes", - "id": "sFzTZbSuM8coEwygeUYes", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Brand", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.988Z", + "id": "JrePkDVYomE8AwcuCUyMi", + "locale": "de", + "publishedAt": "2017-06-27T09:50:36.937Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, - "updatedAt": "2017-06-27T09:50:36.937Z", "website": "http://playsam.com/", }, ], Array [ Object { - "children": Array [], - "companyName": "Normann Copenhagen", "id": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___Entry___decompanyNameTextNode", "internal": Object { "content": "Normann Copenhagen", "contentDigest": "2017-06-27T09:55:16.820Z", "mediaType": "text/markdown", - "type": "contentfulBrandCompanyNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___Entry___de", - "sys": Object { - "type": "Entry", - }, + "raw": "Normann Copenhagen", }, ], Array [ Object { - "children": Array [], - "companyDescription": "Normann Kopenhagen ist eine Art zu leben - eine Denkweise. Wir lieben es, die konventionellen Designregeln herauszufordern. Aus diesem Grund finden Sie traditionelle Materialien, die in untraditionelle Verwendung wie ein Steinhaken aus isländischen Steinen, eine Vase aus Silizium und last but not least ein Hund aus Kunststoff.", "id": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___Entry___decompanyDescriptionTextNode", "internal": Object { "content": "Normann Kopenhagen ist eine Art zu leben - eine Denkweise. Wir lieben es, die konventionellen Designregeln herauszufordern. Aus diesem Grund finden Sie traditionelle Materialien, die in untraditionelle Verwendung wie ein Steinhaken aus isländischen Steinen, eine Vase aus Silizium und last but not least ein Hund aus Kunststoff.", "contentDigest": "2017-06-27T09:55:16.820Z", "mediaType": "text/markdown", - "type": "contentfulBrandCompanyDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c651CQ8rLoIYCeY6G0QG22q___Entry___de", - "sys": Object { - "type": "Entry", - }, + "raw": "Normann Kopenhagen ist eine Art zu leben - eine Denkweise. Wir lieben es, die konventionellen Designregeln herauszufordern. Aus diesem Grund finden Sie traditionelle Materialien, die in untraditionelle Verwendung wie ein Steinhaken aus isländischen Steinen, eine Vase aus Silizium und last but not least ein Hund aus Kunststoff.", }, ], Array [ Object { - "children": Array [], - "companyName": "Lemnos", "id": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry___decompanyNameTextNode", "internal": Object { "content": "Lemnos", "contentDigest": "2017-06-27T09:51:15.647Z", "mediaType": "text/markdown", - "type": "contentfulBrandCompanyNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry___de", - "sys": Object { - "type": "Entry", - }, + "raw": "Lemnos", }, ], Array [ Object { - "children": Array [], - "companyDescription": "TAKATA Lemnos Inc. wurde im Jahre 1947 als Messing-Casting-Fertigungsindustrie in Takaoka-Stadt, Toyama Prefecture, Japan gegründet und wir starteten seit 1966 mit der Seiko Clock Co., Ltd. + "id": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry___decompanyDescriptionTextNode", + "internal": Object { + "content": "TAKATA Lemnos Inc. wurde im Jahre 1947 als Messing-Casting-Fertigungsindustrie in Takaoka-Stadt, Toyama Prefecture, Japan gegründet und wir starteten seit 1966 mit der Seiko Clock Co., Ltd. Wir haben die Entwicklung für die ursprüngliche Planung ab Ende 1980 eingegangen und \\"Lemnos Brand\\" wurde als globale Designuhr von einem Meisterwerk \\"HOLA\\" von Kazuo KAWASAKI entworfen, das 1989 erschien. @@ -14473,9 +13411,12 @@ Lemnos Markenprodukte werden nun von den Designläden und den Innenhandelsgesch In den vergangenen Jahren haben wir auch eine hohe Priorität für die Entwicklung von Innenausstattung, die den traditionellen Techniken des Gründungsherstellers voll ausnutzt, und wir konzentrieren uns immer auf die Entwicklung der neuen Lemnos-Produkte im neuen Markt. Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliffen geschickten Techniken in Japan gemacht. Sie bringen sicherlich die Attraktivität der Materialien auf das Maximum und schaffen feine Produkte nicht beeinflusst auf die Mode-Trend entsprechend. TAKATA Lemnos Inc. möchte definitiv innovativ sein und ständig vorschlagen, die Schönheit dauert ewig.", - "id": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry___decompanyDescriptionTextNode", - "internal": Object { - "content": "TAKATA Lemnos Inc. wurde im Jahre 1947 als Messing-Casting-Fertigungsindustrie in Takaoka-Stadt, Toyama Prefecture, Japan gegründet und wir starteten seit 1966 mit der Seiko Clock Co., Ltd. + "contentDigest": "2017-06-27T09:51:15.647Z", + "mediaType": "text/markdown", + "type": "ContentfulNodeTypeText", + }, + "parent": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry___de", + "raw": "TAKATA Lemnos Inc. wurde im Jahre 1947 als Messing-Casting-Fertigungsindustrie in Takaoka-Stadt, Toyama Prefecture, Japan gegründet und wir starteten seit 1966 mit der Seiko Clock Co., Ltd. Wir haben die Entwicklung für die ursprüngliche Planung ab Ende 1980 eingegangen und \\"Lemnos Brand\\" wurde als globale Designuhr von einem Meisterwerk \\"HOLA\\" von Kazuo KAWASAKI entworfen, das 1989 erschien. @@ -14486,53 +13427,36 @@ Lemnos Markenprodukte werden nun von den Designläden und den Innenhandelsgesch In den vergangenen Jahren haben wir auch eine hohe Priorität für die Entwicklung von Innenausstattung, die den traditionellen Techniken des Gründungsherstellers voll ausnutzt, und wir konzentrieren uns immer auf die Entwicklung der neuen Lemnos-Produkte im neuen Markt. Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliffen geschickten Techniken in Japan gemacht. Sie bringen sicherlich die Attraktivität der Materialien auf das Maximum und schaffen feine Produkte nicht beeinflusst auf die Mode-Trend entsprechend. TAKATA Lemnos Inc. möchte definitiv innovativ sein und ständig vorschlagen, die Schönheit dauert ewig.", - "contentDigest": "2017-06-27T09:51:15.647Z", - "mediaType": "text/markdown", - "type": "contentfulBrandCompanyDescriptionTextNode", - }, - "parent": "rocybtov1ozk___c4LgMotpNF6W20YKmuemW0a___Entry___de", - "sys": Object { - "type": "Entry", - }, }, ], Array [ Object { - "children": Array [], - "companyName": "Playsam", "id": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___Entry___decompanyNameTextNode", "internal": Object { "content": "Playsam", "contentDigest": "2017-06-27T09:50:36.937Z", "mediaType": "text/markdown", - "type": "contentfulBrandCompanyNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___Entry___de", - "sys": Object { - "type": "Entry", - }, + "raw": "Playsam", }, ], Array [ Object { - "children": Array [], - "companyDescription": "Playsam ist die führende skandinavische Designfirma für Executive Holzspielzeug Geschenk. Skandinavisches Design spielerische Kreativität, Integrität und Raffinesse sind Playsam. Skandinavisches Design und hölzernes Spielzeug macht Playsam Geschenk schön in die Welt des Designs seit 1984.", "id": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___Entry___decompanyDescriptionTextNode", "internal": Object { "content": "Playsam ist die führende skandinavische Designfirma für Executive Holzspielzeug Geschenk. Skandinavisches Design spielerische Kreativität, Integrität und Raffinesse sind Playsam. Skandinavisches Design und hölzernes Spielzeug macht Playsam Geschenk schön in die Welt des Designs seit 1984.", "contentDigest": "2017-06-27T09:50:36.937Z", "mediaType": "text/markdown", - "type": "contentfulBrandCompanyDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___JrePkDVYomE8AwcuCUyMi___Entry___de", - "sys": Object { - "type": "Entry", - }, + "raw": "Playsam ist die führende skandinavische Designfirma für Executive Holzspielzeug Geschenk. Skandinavisches Design spielerische Kreativität, Integrität und Raffinesse sind Playsam. Skandinavisches Design und hölzernes Spielzeug macht Playsam Geschenk schön in die Welt des Designs seit 1984.", }, ], Array [ Object { - "children": Array [], "description": null, "displayField": "productName", "id": "Product", @@ -14541,8 +13465,14 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "type": "ContentfulContentType", }, "name": "Product", - "parent": null, "sys": Object { + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:31.538Z", + "id": "c2PqfXUJwE8qSYKuM0U6w8M", + "locale": "en-US", + "publishedAt": "2017-06-27T09:40:36.821Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "ContentType", }, }, @@ -14553,12 +13483,7 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "categories___NODE": Array [ "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry", ], - "children": Array [ - "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___EntryproductNameTextNode", - "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___EntryproductDescriptionTextNode", - ], - "contentful_id": "c5KsDBWseXY6QegucYAoacS", - "createdAt": "2017-06-27T09:35:43.996Z", + "children": Array [], "id": "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry", "image___NODE": Array [ "rocybtov1ozk___wtrHxeu3zEoEce2MokCSi___Asset", @@ -14567,7 +13492,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "contentDigest": "2017-06-27T09:56:59.626Z", "type": "ContentfulProduct", }, - "node_locale": "en-US", "parent": "Product", "price": 44, "productDescription___NODE": "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___EntryproductDescriptionTextNode", @@ -14576,17 +13500,15 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "sizetypecolor": "Length: 135 mm | color: espresso, green, or icar (white)", "sku": "B001R6JUZ2", "slug": "playsam-streamliner-classic-car-espresso", - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "2PqfXUJwE8qSYKuM0U6w8M", - "id": "c2PqfXUJwE8qSYKuM0U6w8M", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Product", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:43.996Z", + "id": "c5KsDBWseXY6QegucYAoacS", + "locale": "en-US", + "publishedAt": "2017-06-27T09:56:59.626Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "tags": Array [ @@ -14596,7 +13518,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "sweden", "design", ], - "updatedAt": "2017-06-27T09:56:59.626Z", "website": "http://www.amazon.com/dp/B001R6JUZ2/", }, ], @@ -14606,12 +13527,7 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "categories___NODE": Array [ "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry", ], - "children": Array [ - "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___EntryproductNameTextNode", - "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___EntryproductDescriptionTextNode", - ], - "contentful_id": "c3DVqIYj4dOwwcKu6sgqOgg", - "createdAt": "2017-06-27T09:35:44.006Z", + "children": Array [], "id": "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry", "image___NODE": Array [ "rocybtov1ozk___Xc0ny7GWsMEMCeASWO2um___Asset", @@ -14620,7 +13536,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "contentDigest": "2017-06-27T09:54:51.159Z", "type": "ContentfulProduct", }, - "node_locale": "en-US", "parent": "Product", "price": 11, "productDescription___NODE": "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___EntryproductDescriptionTextNode", @@ -14629,17 +13544,15 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "sizetypecolor": "3 x 3 x 5 inches; 5.3 ounces", "sku": "B00E82D7I8", "slug": "hudson-wall-cup", - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "2PqfXUJwE8qSYKuM0U6w8M", - "id": "c2PqfXUJwE8qSYKuM0U6w8M", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Product", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.006Z", + "id": "c3DVqIYj4dOwwcKu6sgqOgg", + "locale": "en-US", + "publishedAt": "2017-06-27T09:54:51.159Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "tags": Array [ @@ -14647,7 +13560,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "flowers", "accessories", ], - "updatedAt": "2017-06-27T09:54:51.159Z", "website": "http://www.amazon.com/dp/B00E82D7I8/", }, ], @@ -14657,12 +13569,7 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "categories___NODE": Array [ "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry", ], - "children": Array [ - "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___EntryproductNameTextNode", - "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___EntryproductDescriptionTextNode", - ], - "contentful_id": "c6dbjWqNd9SqccegcqYq224", - "createdAt": "2017-06-27T09:35:44.049Z", + "children": Array [], "id": "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry", "image___NODE": Array [ "rocybtov1ozk___c10TkaLheGeQG6qQGqWYqUI___Asset", @@ -14671,7 +13578,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "contentDigest": "2017-06-27T09:53:23.179Z", "type": "ContentfulProduct", }, - "node_locale": "en-US", "parent": "Product", "price": 22, "productDescription___NODE": "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___EntryproductDescriptionTextNode", @@ -14680,17 +13586,15 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "sizetypecolor": "0.8 x 0.8 x 11.2 inches; 1.6 ounces", "sku": "B0081F2CCK", "slug": "whisk-beater", - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "2PqfXUJwE8qSYKuM0U6w8M", - "id": "c2PqfXUJwE8qSYKuM0U6w8M", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Product", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.049Z", + "id": "c6dbjWqNd9SqccegcqYq224", + "locale": "en-US", + "publishedAt": "2017-06-27T09:53:23.179Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "tags": Array [ @@ -14700,7 +13604,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "scandinavia", "design", ], - "updatedAt": "2017-06-27T09:53:23.179Z", "website": "http://www.amazon.com/dp/B0081F2CCK/", }, ], @@ -14710,12 +13613,7 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "categories___NODE": Array [ "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry", ], - "children": Array [ - "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___EntryproductNameTextNode", - "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___EntryproductDescriptionTextNode", - ], - "contentful_id": "c4BqrajvA8E6qwgkieoqmqO", - "createdAt": "2017-06-27T09:35:44.130Z", + "children": Array [], "id": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry", "image___NODE": Array [ "rocybtov1ozk___KTRF62Q4gg60q6WCsWKw8___Asset", @@ -14724,26 +13622,23 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "contentDigest": "2017-06-27T09:52:29.215Z", "type": "ContentfulProduct", }, - "node_locale": "en-US", "parent": "Product", "price": 120, "productDescription___NODE": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___EntryproductDescriptionTextNode", "productName___NODE": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___EntryproductNameTextNode", "quantity": 3, "sizetypecolor": "10\\" x 2.2\\"", - "sku": "B00MG4ULK2", - "slug": "soso-wall-clock", - "spaceId": "rocybtov1ozk", - "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "2PqfXUJwE8qSYKuM0U6w8M", - "id": "c2PqfXUJwE8qSYKuM0U6w8M", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "sku": "B00MG4ULK2", + "slug": "soso-wall-clock", + "sys": Object { + "contentType___NODE": "Product", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.130Z", + "id": "c4BqrajvA8E6qwgkieoqmqO", + "locale": "en-US", + "publishedAt": "2017-06-27T09:52:29.215Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "tags": Array [ @@ -14753,149 +13648,115 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "yellow", "gifts", ], - "updatedAt": "2017-06-27T09:52:29.215Z", "website": "http://store.dwell.com/soso-wall-clock.html", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___EntryproductNameTextNode", "internal": Object { "content": "Playsam Streamliner Classic Car, Espresso", "contentDigest": "2017-06-27T09:56:59.626Z", "mediaType": "text/markdown", - "type": "contentfulProductProductNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry", - "productName": "Playsam Streamliner Classic Car, Espresso", - "sys": Object { - "type": "Entry", - }, + "raw": "Playsam Streamliner Classic Car, Espresso", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___EntryproductDescriptionTextNode", "internal": Object { "content": "A classic Playsam design, the Streamliner Classic Car has been selected as Swedish Design Classic by the Swedish National Museum for its inventive style and sleek surface. It's no wonder that this wooden car has also been a long-standing favorite for children both big and small!", "contentDigest": "2017-06-27T09:56:59.626Z", "mediaType": "text/markdown", - "type": "contentfulProductProductDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry", - "productDescription": "A classic Playsam design, the Streamliner Classic Car has been selected as Swedish Design Classic by the Swedish National Museum for its inventive style and sleek surface. It's no wonder that this wooden car has also been a long-standing favorite for children both big and small!", - "sys": Object { - "type": "Entry", - }, + "raw": "A classic Playsam design, the Streamliner Classic Car has been selected as Swedish Design Classic by the Swedish National Museum for its inventive style and sleek surface. It's no wonder that this wooden car has also been a long-standing favorite for children both big and small!", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___EntryproductNameTextNode", "internal": Object { "content": "Hudson Wall Cup", "contentDigest": "2017-06-27T09:54:51.159Z", "mediaType": "text/markdown", - "type": "contentfulProductProductNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry", - "productName": "Hudson Wall Cup", - "sys": Object { - "type": "Entry", - }, + "raw": "Hudson Wall Cup", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___EntryproductDescriptionTextNode", "internal": Object { "content": "Wall Hanging Glass Flower Vase and Terrarium", "contentDigest": "2017-06-27T09:54:51.159Z", "mediaType": "text/markdown", - "type": "contentfulProductProductDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry", - "productDescription": "Wall Hanging Glass Flower Vase and Terrarium", - "sys": Object { - "type": "Entry", - }, + "raw": "Wall Hanging Glass Flower Vase and Terrarium", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___EntryproductNameTextNode", "internal": Object { "content": "Whisk Beater", "contentDigest": "2017-06-27T09:53:23.179Z", "mediaType": "text/markdown", - "type": "contentfulProductProductNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry", - "productName": "Whisk Beater", - "sys": Object { - "type": "Entry", - }, + "raw": "Whisk Beater", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___EntryproductDescriptionTextNode", "internal": Object { "content": "A creative little whisk that comes in 8 different colors. Handy and easy to clean after use. A great gift idea.", "contentDigest": "2017-06-27T09:53:23.179Z", "mediaType": "text/markdown", - "type": "contentfulProductProductDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry", - "productDescription": "A creative little whisk that comes in 8 different colors. Handy and easy to clean after use. A great gift idea.", - "sys": Object { - "type": "Entry", - }, + "raw": "A creative little whisk that comes in 8 different colors. Handy and easy to clean after use. A great gift idea.", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___EntryproductNameTextNode", "internal": Object { "content": "SoSo Wall Clock", "contentDigest": "2017-06-27T09:52:29.215Z", "mediaType": "text/markdown", - "type": "contentfulProductProductNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry", - "productName": "SoSo Wall Clock", - "sys": Object { - "type": "Entry", - }, + "raw": "SoSo Wall Clock", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___EntryproductDescriptionTextNode", "internal": Object { "content": "The newly released SoSo Clock from Lemnos marries simple, clean design and bold, striking features. Its saturated marigold face is a lively pop of color to white or grey walls, but would also pair nicely with navy and maroon. Where most clocks feature numbers at the border of the clock, the SoSo brings them in tight to the middle, leaving a wide space between the numbers and the slight frame. The hour hand provides a nice interruption to the black and yellow of the clock - it is featured in a brilliant white. Despite its bold color and contrast, the SoSo maintains a clean, pure aesthetic that is suitable to a variety of contemporary interiors.", "contentDigest": "2017-06-27T09:52:29.215Z", "mediaType": "text/markdown", - "type": "contentfulProductProductDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry", - "productDescription": "The newly released SoSo Clock from Lemnos marries simple, clean design and bold, striking features. Its saturated marigold face is a lively pop of color to white or grey walls, but would also pair nicely with navy and maroon. Where most clocks feature numbers at the border of the clock, the SoSo brings them in tight to the middle, leaving a wide space between the numbers and the slight frame. The hour hand provides a nice interruption to the black and yellow of the clock - it is featured in a brilliant white. Despite its bold color and contrast, the SoSo maintains a clean, pure aesthetic that is suitable to a variety of contemporary interiors.", - "sys": Object { - "type": "Entry", - }, + "raw": "The newly released SoSo Clock from Lemnos marries simple, clean design and bold, striking features. Its saturated marigold face is a lively pop of color to white or grey walls, but would also pair nicely with navy and maroon. Where most clocks feature numbers at the border of the clock, the SoSo brings them in tight to the middle, leaving a wide space between the numbers and the slight frame. The hour hand provides a nice interruption to the black and yellow of the clock - it is featured in a brilliant white. Despite its bold color and contrast, the SoSo maintains a clean, pure aesthetic that is suitable to a variety of contemporary interiors.", }, ], Array [ Object { - "children": Array [], "description": null, "displayField": "productName", "id": "Product", @@ -14904,8 +13765,14 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "type": "ContentfulContentType", }, "name": "Product", - "parent": null, "sys": Object { + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:31.538Z", + "id": "c2PqfXUJwE8qSYKuM0U6w8M", + "locale": "de", + "publishedAt": "2017-06-27T09:40:36.821Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "ContentType", }, }, @@ -14916,12 +13783,7 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "categories___NODE": Array [ "rocybtov1ozk___c24DPGBDeGEaYy8ms4Y8QMQ___Entry___de", ], - "children": Array [ - "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry___deproductNameTextNode", - "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry___deproductDescriptionTextNode", - ], - "contentful_id": "c5KsDBWseXY6QegucYAoacS", - "createdAt": "2017-06-27T09:35:43.996Z", + "children": Array [], "id": "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry___de", "image___NODE": Array [ "rocybtov1ozk___wtrHxeu3zEoEce2MokCSi___Asset___de", @@ -14930,7 +13792,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "contentDigest": "2017-06-27T09:56:59.626Z", "type": "ContentfulProduct", }, - "node_locale": "de", "parent": "Product", "price": 44, "productDescription___NODE": "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry___deproductDescriptionTextNode", @@ -14939,17 +13800,15 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "sizetypecolor": "Length: 135 mm | color: espresso, green, or icar (white)", "sku": "B001R6JUZ2", "slug": "playsam-streamliner-classic-car-espresso", - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "2PqfXUJwE8qSYKuM0U6w8M", - "id": "c2PqfXUJwE8qSYKuM0U6w8M", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Product", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:43.996Z", + "id": "c5KsDBWseXY6QegucYAoacS", + "locale": "de", + "publishedAt": "2017-06-27T09:56:59.626Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "tags": Array [ @@ -14959,7 +13818,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "sweden", "design", ], - "updatedAt": "2017-06-27T09:56:59.626Z", "website": "http://www.amazon.com/dp/B001R6JUZ2/", }, ], @@ -14969,12 +13827,7 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "categories___NODE": Array [ "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry___de", ], - "children": Array [ - "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry___deproductNameTextNode", - "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry___deproductDescriptionTextNode", - ], - "contentful_id": "c3DVqIYj4dOwwcKu6sgqOgg", - "createdAt": "2017-06-27T09:35:44.006Z", + "children": Array [], "id": "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry___de", "image___NODE": Array [ "rocybtov1ozk___Xc0ny7GWsMEMCeASWO2um___Asset___de", @@ -14983,7 +13836,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "contentDigest": "2017-06-27T09:54:51.159Z", "type": "ContentfulProduct", }, - "node_locale": "de", "parent": "Product", "price": 11, "productDescription___NODE": "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry___deproductDescriptionTextNode", @@ -14992,17 +13844,15 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "sizetypecolor": "3 x 3 x 5 inches; 5.3 ounces", "sku": "B00E82D7I8", "slug": "hudson-wall-cup", - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "2PqfXUJwE8qSYKuM0U6w8M", - "id": "c2PqfXUJwE8qSYKuM0U6w8M", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Product", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.006Z", + "id": "c3DVqIYj4dOwwcKu6sgqOgg", + "locale": "de", + "publishedAt": "2017-06-27T09:54:51.159Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "tags": Array [ @@ -15010,7 +13860,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "flowers", "accessories", ], - "updatedAt": "2017-06-27T09:54:51.159Z", "website": "http://www.amazon.com/dp/B00E82D7I8/", }, ], @@ -15020,12 +13869,7 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "categories___NODE": Array [ "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry___de", ], - "children": Array [ - "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry___deproductNameTextNode", - "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry___deproductDescriptionTextNode", - ], - "contentful_id": "c6dbjWqNd9SqccegcqYq224", - "createdAt": "2017-06-27T09:35:44.049Z", + "children": Array [], "id": "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry___de", "image___NODE": Array [ "rocybtov1ozk___c10TkaLheGeQG6qQGqWYqUI___Asset___de", @@ -15034,7 +13878,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "contentDigest": "2017-06-27T09:53:23.179Z", "type": "ContentfulProduct", }, - "node_locale": "de", "parent": "Product", "price": 22, "productDescription___NODE": "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry___deproductDescriptionTextNode", @@ -15043,17 +13886,15 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "sizetypecolor": "0.8 x 0.8 x 11.2 inches; 1.6 ounces", "sku": "B0081F2CCK", "slug": "whisk-beater", - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "2PqfXUJwE8qSYKuM0U6w8M", - "id": "c2PqfXUJwE8qSYKuM0U6w8M", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Product", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.049Z", + "id": "c6dbjWqNd9SqccegcqYq224", + "locale": "de", + "publishedAt": "2017-06-27T09:53:23.179Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "tags": Array [ @@ -15063,7 +13904,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "scandinavia", "design", ], - "updatedAt": "2017-06-27T09:53:23.179Z", "website": "http://www.amazon.com/dp/B0081F2CCK/", }, ], @@ -15073,12 +13913,7 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "categories___NODE": Array [ "rocybtov1ozk___c7LAnCobuuWYSqks6wAwY2a___Entry___de", ], - "children": Array [ - "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry___deproductNameTextNode", - "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry___deproductDescriptionTextNode", - ], - "contentful_id": "c4BqrajvA8E6qwgkieoqmqO", - "createdAt": "2017-06-27T09:35:44.130Z", + "children": Array [], "id": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry___de", "image___NODE": Array [ "rocybtov1ozk___KTRF62Q4gg60q6WCsWKw8___Asset___de", @@ -15087,7 +13922,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "contentDigest": "2017-06-27T09:52:29.215Z", "type": "ContentfulProduct", }, - "node_locale": "de", "parent": "Product", "price": 120, "productDescription___NODE": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry___deproductDescriptionTextNode", @@ -15096,17 +13930,15 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "sizetypecolor": "10\\" x 2.2\\"", "sku": "B00MG4ULK2", "slug": "soso-wall-clock", - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "2PqfXUJwE8qSYKuM0U6w8M", - "id": "c2PqfXUJwE8qSYKuM0U6w8M", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 2, + "contentType___NODE": "Product", + "environmentId": "master", + "firstPublishedAt": "2017-06-27T09:35:44.130Z", + "id": "c4BqrajvA8E6qwgkieoqmqO", + "locale": "de", + "publishedAt": "2017-06-27T09:52:29.215Z", + "publishedVersion": 2, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "tags": Array [ @@ -15116,149 +13948,115 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "yellow", "gifts", ], - "updatedAt": "2017-06-27T09:52:29.215Z", "website": "http://store.dwell.com/soso-wall-clock.html", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry___deproductNameTextNode", "internal": Object { "content": "Playsam Streamliner Klassisches Auto, Espresso", "contentDigest": "2017-06-27T09:56:59.626Z", "mediaType": "text/markdown", - "type": "contentfulProductProductNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry___de", - "productName": "Playsam Streamliner Klassisches Auto, Espresso", - "sys": Object { - "type": "Entry", - }, + "raw": "Playsam Streamliner Klassisches Auto, Espresso", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry___deproductDescriptionTextNode", "internal": Object { "content": "Ein klassisches Playsam-Design, das Streamliner Classic Car wurde als Swedish Design Classic vom Schwedischen Nationalmuseum für seinen erfinderischen Stil und seine schlanke Oberfläche ausgewählt. Es ist kein Wunder, dass dieses hölzerne Auto auch ein langjähriger Liebling für Kinder gewesen ist, die groß und klein sind!", "contentDigest": "2017-06-27T09:56:59.626Z", "mediaType": "text/markdown", - "type": "contentfulProductProductDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c5KsDBWseXY6QegucYAoacS___Entry___de", - "productDescription": "Ein klassisches Playsam-Design, das Streamliner Classic Car wurde als Swedish Design Classic vom Schwedischen Nationalmuseum für seinen erfinderischen Stil und seine schlanke Oberfläche ausgewählt. Es ist kein Wunder, dass dieses hölzerne Auto auch ein langjähriger Liebling für Kinder gewesen ist, die groß und klein sind!", - "sys": Object { - "type": "Entry", - }, + "raw": "Ein klassisches Playsam-Design, das Streamliner Classic Car wurde als Swedish Design Classic vom Schwedischen Nationalmuseum für seinen erfinderischen Stil und seine schlanke Oberfläche ausgewählt. Es ist kein Wunder, dass dieses hölzerne Auto auch ein langjähriger Liebling für Kinder gewesen ist, die groß und klein sind!", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry___deproductNameTextNode", "internal": Object { "content": "Becher", "contentDigest": "2017-06-27T09:54:51.159Z", "mediaType": "text/markdown", - "type": "contentfulProductProductNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry___de", - "productName": "Becher", - "sys": Object { - "type": "Entry", - }, + "raw": "Becher", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry___deproductDescriptionTextNode", "internal": Object { "content": "Wand-hängende Glas-Blumen-Vase und Terrarium", "contentDigest": "2017-06-27T09:54:51.159Z", "mediaType": "text/markdown", - "type": "contentfulProductProductDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c3DVqIYj4dOwwcKu6sgqOgg___Entry___de", - "productDescription": "Wand-hängende Glas-Blumen-Vase und Terrarium", - "sys": Object { - "type": "Entry", - }, + "raw": "Wand-hängende Glas-Blumen-Vase und Terrarium", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry___deproductNameTextNode", "internal": Object { "content": "Schneebesen", "contentDigest": "2017-06-27T09:53:23.179Z", "mediaType": "text/markdown", - "type": "contentfulProductProductNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry___de", - "productName": "Schneebesen", - "sys": Object { - "type": "Entry", - }, + "raw": "Schneebesen", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry___deproductDescriptionTextNode", "internal": Object { "content": "Ein kreativer kleiner Schneebesen, der in 8 verschiedenen Farben kommt. Praktisch und nach dem Gebrauch leicht zu reinigen. Eine tolle Geschenkidee.", "contentDigest": "2017-06-27T09:53:23.179Z", "mediaType": "text/markdown", - "type": "contentfulProductProductDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c6dbjWqNd9SqccegcqYq224___Entry___de", - "productDescription": "Ein kreativer kleiner Schneebesen, der in 8 verschiedenen Farben kommt. Praktisch und nach dem Gebrauch leicht zu reinigen. Eine tolle Geschenkidee.", - "sys": Object { - "type": "Entry", - }, + "raw": "Ein kreativer kleiner Schneebesen, der in 8 verschiedenen Farben kommt. Praktisch und nach dem Gebrauch leicht zu reinigen. Eine tolle Geschenkidee.", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry___deproductNameTextNode", "internal": Object { "content": "SoSo wanduhr", "contentDigest": "2017-06-27T09:52:29.215Z", "mediaType": "text/markdown", - "type": "contentfulProductProductNameTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry___de", - "productName": "SoSo wanduhr", - "sys": Object { - "type": "Entry", - }, + "raw": "SoSo wanduhr", }, ], Array [ Object { - "children": Array [], "id": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry___deproductDescriptionTextNode", "internal": Object { "content": "Die neu veröffentlichte SoSo Clock von Lemnos heiratet einfaches, sauberes Design und fette, auffällige Features. Sein gesättigtes Ringelblumengesicht ist ein lebhafter Pop der Farbe zu den weißen oder grauen Wänden, aber würde auch gut mit Marine und kastanienbraun paaren. Wo die meisten Uhren am Rande der Uhr Nummern sind, bringt der SoSo sie in die Mitte und lässt einen weiten Raum zwischen den Zahlen und dem leichten Rahmen. Der Stundenzeiger bietet eine schöne Unterbrechung der schwarzen und gelben der Uhr - es ist in einem brillanten Weiß vorgestellt. Trotz seiner kräftigen Farbe und des Kontrastes behält der SoSo eine saubere, reine Ästhetik, die für eine Vielzahl von zeitgenössischen Interieurs geeignet ist.", "contentDigest": "2017-06-27T09:52:29.215Z", "mediaType": "text/markdown", - "type": "contentfulProductProductDescriptionTextNode", + "type": "ContentfulNodeTypeText", }, "parent": "rocybtov1ozk___c4BqrajvA8E6qwgkieoqmqO___Entry___de", - "productDescription": "Die neu veröffentlichte SoSo Clock von Lemnos heiratet einfaches, sauberes Design und fette, auffällige Features. Sein gesättigtes Ringelblumengesicht ist ein lebhafter Pop der Farbe zu den weißen oder grauen Wänden, aber würde auch gut mit Marine und kastanienbraun paaren. Wo die meisten Uhren am Rande der Uhr Nummern sind, bringt der SoSo sie in die Mitte und lässt einen weiten Raum zwischen den Zahlen und dem leichten Rahmen. Der Stundenzeiger bietet eine schöne Unterbrechung der schwarzen und gelben der Uhr - es ist in einem brillanten Weiß vorgestellt. Trotz seiner kräftigen Farbe und des Kontrastes behält der SoSo eine saubere, reine Ästhetik, die für eine Vielzahl von zeitgenössischen Interieurs geeignet ist.", - "sys": Object { - "type": "Entry", - }, + "raw": "Die neu veröffentlichte SoSo Clock von Lemnos heiratet einfaches, sauberes Design und fette, auffällige Features. Sein gesättigtes Ringelblumengesicht ist ein lebhafter Pop der Farbe zu den weißen oder grauen Wänden, aber würde auch gut mit Marine und kastanienbraun paaren. Wo die meisten Uhren am Rande der Uhr Nummern sind, bringt der SoSo sie in die Mitte und lässt einen weiten Raum zwischen den Zahlen und dem leichten Rahmen. Der Stundenzeiger bietet eine schöne Unterbrechung der schwarzen und gelben der Uhr - es ist in einem brillanten Weiß vorgestellt. Trotz seiner kräftigen Farbe und des Kontrastes behält der SoSo eine saubere, reine Ästhetik, die für eine Vielzahl von zeitgenössischen Interieurs geeignet ist.", }, ], Array [ Object { - "children": Array [], "description": "just for testing JSON fields", "displayField": null, "id": "JSON-test", @@ -15267,155 +14065,119 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "type": "ContentfulContentType", }, "name": "JSON-test", - "parent": null, "sys": Object { + "environmentId": "master", + "firstPublishedAt": "2017-11-28T02:15:46.221Z", + "id": "jsonTest", + "locale": "en-US", + "publishedAt": "2018-08-13T14:21:13.985Z", + "publishedVersion": 3, + "spaceId": "rocybtov1ozk", "type": "ContentType", }, }, ], Array [ Object { - "children": Array [ - "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___EntryjsonTestJSONNode", - "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___EntryjsonStringTest0JSONNode", - ], - "contentful_id": "c71mfnH4QKsSsQmgoaQuq6O", - "createdAt": "2017-11-28T02:16:10.604Z", + "children": Array [], "id": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry", "internal": Object { "contentDigest": "2018-08-13T14:27:12.458Z", "type": "ContentfulJsonTest", }, - "jsonStringTest___NODE": Array [ - "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___EntryjsonStringTest0JSONNode", - ], - "jsonTest___NODE": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___EntryjsonTestJSONNode", - "node_locale": "en-US", - "parent": "JSON-test", - "spaceId": "rocybtov1ozk", - "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "jsonTest", - "id": "jsonTest", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 4, - "type": "Entry", - }, - "updatedAt": "2018-08-13T14:27:12.458Z", - }, - ], - Array [ - Object { - "children": Array [], - "devDependencies": Object { - "babel-cli": "^6.26.0", - "babel-eslint": "^7.2.3", - "babel-jest": "^20.0.3", - "babel-plugin-add-module-exports": "^0.2.1", - "babel-plugin-lodash": "^3.2.11", - "babel-plugin-transform-async-to-generator": "^6.24.1", - "babel-plugin-transform-flow-strip-types": "^6.22.0", - "babel-plugin-transform-runtime": "^6.23.0", - "babel-preset-env": "^1.6.0", - "babel-preset-flow": "^6.23.0", - "babel-preset-react": "^6.24.1", - "babel-preset-stage-0": "^6.24.1", - "babel-register": "^6.26.0", - "babel-runtime": "^6.26.0", - "chokidar": "^1.7.0", - "cross-env": "^5.0.5", - "eslint": "^4.5.0", - "eslint-config-google": "^0.9.1", - "eslint-config-prettier": "^2.5.0", - "eslint-plugin-flow-vars": "^0.5.0", - "eslint-plugin-flowtype": "^2.35.0", - "eslint-plugin-import": "^2.7.0", - "eslint-plugin-jsx-a11y": "^6.0.2", - "eslint-plugin-prettier": "^2.2.0", - "eslint-plugin-react": "^7.3.0", - "flow-bin": "^0.42.0", - "glob": "^7.1.1", - "jest": "^20.0.4", - "jest-cli": "^20.0.4", - "lerna": "^2.1.1", - "plop": "^1.8.1", - "prettier": "^1.7.0", - "prettier-eslint-cli": "4.2.x", - "remotedev-server": "^0.2.3", - "rimraf": "^2.6.1", - }, - "engines": Object { - "yarn": "^1.2.1", - }, - "eslintIgnore": Array [ - "interfaces", - "**/__tests__/fixtures/", - ], - "id": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___EntryjsonTestJSONNode", - "internal": Object { - "content": "{\\"engines\\":{\\"yarn\\":\\"^1.2.1\\"},\\"private\\":true,\\"scripts\\":{\\"jest\\":\\"jest\\",\\"lint\\":\\"eslint --ext .js,.jsx packages/**/src\\",\\"plop\\":\\"plop\\",\\"test\\":\\"yarn lint && yarn jest\\",\\"lerna\\":\\"lerna\\",\\"watch\\":\\"lerna run watch --no-sort --stream --concurrency 999\\",\\"format\\":\\"npm run format-packages && npm run format-cache-dir && npm run format-www && npm run format-examples && npm run format-scripts\\",\\"publish\\":\\"lerna publish\\",\\"bootstrap\\":\\"yarn && npm run check-versions && lerna run prepublish\\",\\"lint:flow\\":\\"babel-node scripts/flow-check.js\\",\\"remotedev\\":\\"remotedev --hostname=localhost --port=19999\\",\\"test_bkup\\":\\"npm run lint && npm run test-node && npm run test-integration\\",\\"format-www\\":\\"prettier-eslint --write /\\"www/*.js/\\" /\\"www/src/**/*.js/\\"\\",\\"test:watch\\":\\"jest --watch\\",\\"test:update\\":\\"jest --updateSnapshot\\",\\"publish-next\\":\\"lerna publish --npm-tag=next\\",\\"check-versions\\":\\"babel-node scripts/check-versions.js\\",\\"format-scripts\\":\\"prettier-eslint --write /\\"scripts/**/*.js/\\"\\",\\"publish-canary\\":\\"lerna publish --canary --yes\\",\\"format-examples\\":\\"prettier-eslint --write /\\"examples/**/gatsby-node.js/\\" /\\"examples/**/gatsby-config.js/\\" /\\"examples/**/src/**/*.js/\\"\\",\\"format-packages\\":\\"prettier-eslint --write /\\"packages/*/src/**/*.js/\\"\\",\\"format-cache-dir\\":\\"prettier-eslint --write /\\"packages/gatsby/cache-dir/*.js/\\"\\"},\\"workspaces\\":[\\"packages/*\\"],\\"eslintIgnore\\":[\\"interfaces\\",\\"**/__tests__/fixtures/\\"],\\"devDependencies\\":{\\"glob\\":\\"^7.1.1\\",\\"jest\\":\\"^20.0.4\\",\\"plop\\":\\"^1.8.1\\",\\"lerna\\":\\"^2.1.1\\",\\"eslint\\":\\"^4.5.0\\",\\"rimraf\\":\\"^2.6.1\\",\\"chokidar\\":\\"^1.7.0\\",\\"flow-bin\\":\\"^0.42.0\\",\\"jest-cli\\":\\"^20.0.4\\",\\"prettier\\":\\"^1.7.0\\",\\"babel-cli\\":\\"^6.26.0\\",\\"cross-env\\":\\"^5.0.5\\",\\"babel-jest\\":\\"^20.0.3\\",\\"babel-eslint\\":\\"^7.2.3\\",\\"babel-runtime\\":\\"^6.26.0\\",\\"babel-register\\":\\"^6.26.0\\",\\"babel-preset-env\\":\\"^1.6.0\\",\\"remotedev-server\\":\\"^0.2.3\\",\\"babel-preset-flow\\":\\"^6.23.0\\",\\"babel-preset-react\\":\\"^6.24.1\\",\\"babel-plugin-lodash\\":\\"^3.2.11\\",\\"eslint-plugin-react\\":\\"^7.3.0\\",\\"prettier-eslint-cli\\":\\"4.2.x\\",\\"babel-preset-stage-0\\":\\"^6.24.1\\",\\"eslint-config-google\\":\\"^0.9.1\\",\\"eslint-plugin-import\\":\\"^2.7.0\\",\\"eslint-config-prettier\\":\\"^2.5.0\\",\\"eslint-plugin-flowtype\\":\\"^2.35.0\\",\\"eslint-plugin-jsx-a11y\\":\\"^6.0.2\\",\\"eslint-plugin-prettier\\":\\"^2.2.0\\",\\"eslint-plugin-flow-vars\\":\\"^0.5.0\\",\\"babel-plugin-transform-runtime\\":\\"^6.23.0\\",\\"babel-plugin-add-module-exports\\":\\"^0.2.1\\",\\"babel-plugin-transform-flow-strip-types\\":\\"^6.22.0\\",\\"babel-plugin-transform-async-to-generator\\":\\"^6.24.1\\"}}", - "contentDigest": "2018-08-13T14:27:12.458Z", - "mediaType": "application/json", - "type": "contentfulJsonTestJsonTestJsonNode", - }, - "parent": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry", - "private": true, - "scripts": Object { - "bootstrap": "yarn && npm run check-versions && lerna run prepublish", - "check-versions": "babel-node scripts/check-versions.js", - "format": "npm run format-packages && npm run format-cache-dir && npm run format-www && npm run format-examples && npm run format-scripts", - "format-cache-dir": "prettier-eslint --write \\"packages/gatsby/cache-dir/*.js\\"", - "format-examples": "prettier-eslint --write \\"examples/**/gatsby-node.js\\" \\"examples/**/gatsby-config.js\\" \\"examples/**/src/**/*.js\\"", - "format-packages": "prettier-eslint --write \\"packages/*/src/**/*.js\\"", - "format-scripts": "prettier-eslint --write \\"scripts/**/*.js\\"", - "format-www": "prettier-eslint --write \\"www/*.js\\" \\"www/src/**/*.js\\"", - "jest": "jest", - "lerna": "lerna", - "lint": "eslint --ext .js,.jsx packages/**/src", - "lint:flow": "babel-node scripts/flow-check.js", - "plop": "plop", - "publish": "lerna publish", - "publish-canary": "lerna publish --canary --yes", - "publish-next": "lerna publish --npm-tag=next", - "remotedev": "remotedev --hostname=localhost --port=19999", - "test": "yarn lint && yarn jest", - "test:update": "jest --updateSnapshot", - "test:watch": "jest --watch", - "test_bkup": "npm run lint && npm run test-node && npm run test-integration", - "watch": "lerna run watch --no-sort --stream --concurrency 999", - }, - "sys": Object { - "type": "Entry", - }, - "workspaces": Array [ - "packages/*", - ], - }, - ], - Array [ - Object { - "children": Array [], - "content": "test", - "id": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___EntryjsonStringTest0JSONNode", - "internal": Object { - "content": "\\"test\\"", - "contentDigest": "2018-08-13T14:27:12.458Z", - "mediaType": "application/json", - "type": "contentfulJsonTestJsonStringTestJsonNode", + "jsonStringTest": Array [ + "test", + ], + "jsonTest": Object { + "devDependencies": Object { + "babel-cli": "^6.26.0", + "babel-eslint": "^7.2.3", + "babel-jest": "^20.0.3", + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-lodash": "^3.2.11", + "babel-plugin-transform-async-to-generator": "^6.24.1", + "babel-plugin-transform-flow-strip-types": "^6.22.0", + "babel-plugin-transform-runtime": "^6.23.0", + "babel-preset-env": "^1.6.0", + "babel-preset-flow": "^6.23.0", + "babel-preset-react": "^6.24.1", + "babel-preset-stage-0": "^6.24.1", + "babel-register": "^6.26.0", + "babel-runtime": "^6.26.0", + "chokidar": "^1.7.0", + "cross-env": "^5.0.5", + "eslint": "^4.5.0", + "eslint-config-google": "^0.9.1", + "eslint-config-prettier": "^2.5.0", + "eslint-plugin-flow-vars": "^0.5.0", + "eslint-plugin-flowtype": "^2.35.0", + "eslint-plugin-import": "^2.7.0", + "eslint-plugin-jsx-a11y": "^6.0.2", + "eslint-plugin-prettier": "^2.2.0", + "eslint-plugin-react": "^7.3.0", + "flow-bin": "^0.42.0", + "glob": "^7.1.1", + "jest": "^20.0.4", + "jest-cli": "^20.0.4", + "lerna": "^2.1.1", + "plop": "^1.8.1", + "prettier": "^1.7.0", + "prettier-eslint-cli": "4.2.x", + "remotedev-server": "^0.2.3", + "rimraf": "^2.6.1", + }, + "engines": Object { + "yarn": "^1.2.1", + }, + "eslintIgnore": Array [ + "interfaces", + "**/__tests__/fixtures/", + ], + "private": true, + "scripts": Object { + "bootstrap": "yarn && npm run check-versions && lerna run prepublish", + "check-versions": "babel-node scripts/check-versions.js", + "format": "npm run format-packages && npm run format-cache-dir && npm run format-www && npm run format-examples && npm run format-scripts", + "format-cache-dir": "prettier-eslint --write \\"packages/gatsby/cache-dir/*.js\\"", + "format-examples": "prettier-eslint --write \\"examples/**/gatsby-node.js\\" \\"examples/**/gatsby-config.js\\" \\"examples/**/src/**/*.js\\"", + "format-packages": "prettier-eslint --write \\"packages/*/src/**/*.js\\"", + "format-scripts": "prettier-eslint --write \\"scripts/**/*.js\\"", + "format-www": "prettier-eslint --write \\"www/*.js\\" \\"www/src/**/*.js\\"", + "jest": "jest", + "lerna": "lerna", + "lint": "eslint --ext .js,.jsx packages/**/src", + "lint:flow": "babel-node scripts/flow-check.js", + "plop": "plop", + "publish": "lerna publish", + "publish-canary": "lerna publish --canary --yes", + "publish-next": "lerna publish --npm-tag=next", + "remotedev": "remotedev --hostname=localhost --port=19999", + "test": "yarn lint && yarn jest", + "test:update": "jest --updateSnapshot", + "test:watch": "jest --watch", + "test_bkup": "npm run lint && npm run test-node && npm run test-integration", + "watch": "lerna run watch --no-sort --stream --concurrency 999", + }, + "workspaces": Array [ + "packages/*", + ], }, - "parent": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry", + "parent": "JSON-test", "sys": Object { + "contentType___NODE": "JSON-test", + "environmentId": "master", + "firstPublishedAt": "2017-11-28T02:16:10.604Z", + "id": "c71mfnH4QKsSsQmgoaQuq6O", + "locale": "en-US", + "publishedAt": "2018-08-13T14:27:12.458Z", + "publishedVersion": 4, + "spaceId": "rocybtov1ozk", "type": "Entry", }, }, ], Array [ Object { - "children": Array [], "description": "just for testing JSON fields", "displayField": null, "id": "JSON-test", @@ -15424,155 +14186,119 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "type": "ContentfulContentType", }, "name": "JSON-test", - "parent": null, "sys": Object { + "environmentId": "master", + "firstPublishedAt": "2017-11-28T02:15:46.221Z", + "id": "jsonTest", + "locale": "de", + "publishedAt": "2018-08-13T14:21:13.985Z", + "publishedVersion": 3, + "spaceId": "rocybtov1ozk", "type": "ContentType", }, }, ], Array [ Object { - "children": Array [ - "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry___dejsonTestJSONNode", - "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry___dejsonStringTest0JSONNode", - ], - "contentful_id": "c71mfnH4QKsSsQmgoaQuq6O", - "createdAt": "2017-11-28T02:16:10.604Z", + "children": Array [], "id": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry___de", "internal": Object { "contentDigest": "2018-08-13T14:27:12.458Z", "type": "ContentfulJsonTest", }, - "jsonStringTest___NODE": Array [ - "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry___dejsonStringTest0JSONNode", - ], - "jsonTest___NODE": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry___dejsonTestJSONNode", - "node_locale": "de", - "parent": "JSON-test", - "spaceId": "rocybtov1ozk", - "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "jsonTest", - "id": "jsonTest", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 4, - "type": "Entry", - }, - "updatedAt": "2018-08-13T14:27:12.458Z", - }, - ], - Array [ - Object { - "children": Array [], - "devDependencies": Object { - "babel-cli": "^6.26.0", - "babel-eslint": "^7.2.3", - "babel-jest": "^20.0.3", - "babel-plugin-add-module-exports": "^0.2.1", - "babel-plugin-lodash": "^3.2.11", - "babel-plugin-transform-async-to-generator": "^6.24.1", - "babel-plugin-transform-flow-strip-types": "^6.22.0", - "babel-plugin-transform-runtime": "^6.23.0", - "babel-preset-env": "^1.6.0", - "babel-preset-flow": "^6.23.0", - "babel-preset-react": "^6.24.1", - "babel-preset-stage-0": "^6.24.1", - "babel-register": "^6.26.0", - "babel-runtime": "^6.26.0", - "chokidar": "^1.7.0", - "cross-env": "^5.0.5", - "eslint": "^4.5.0", - "eslint-config-google": "^0.9.1", - "eslint-config-prettier": "^2.5.0", - "eslint-plugin-flow-vars": "^0.5.0", - "eslint-plugin-flowtype": "^2.35.0", - "eslint-plugin-import": "^2.7.0", - "eslint-plugin-jsx-a11y": "^6.0.2", - "eslint-plugin-prettier": "^2.2.0", - "eslint-plugin-react": "^7.3.0", - "flow-bin": "^0.42.0", - "glob": "^7.1.1", - "jest": "^20.0.4", - "jest-cli": "^20.0.4", - "lerna": "^2.1.1", - "plop": "^1.8.1", - "prettier": "^1.7.0", - "prettier-eslint-cli": "4.2.x", - "remotedev-server": "^0.2.3", - "rimraf": "^2.6.1", - }, - "engines": Object { - "yarn": "^1.2.1", - }, - "eslintIgnore": Array [ - "interfaces", - "**/__tests__/fixtures/", - ], - "id": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry___dejsonTestJSONNode", - "internal": Object { - "content": "{\\"engines\\":{\\"yarn\\":\\"^1.2.1\\"},\\"private\\":true,\\"scripts\\":{\\"jest\\":\\"jest\\",\\"lint\\":\\"eslint --ext .js,.jsx packages/**/src\\",\\"plop\\":\\"plop\\",\\"test\\":\\"yarn lint && yarn jest\\",\\"lerna\\":\\"lerna\\",\\"watch\\":\\"lerna run watch --no-sort --stream --concurrency 999\\",\\"format\\":\\"npm run format-packages && npm run format-cache-dir && npm run format-www && npm run format-examples && npm run format-scripts\\",\\"publish\\":\\"lerna publish\\",\\"bootstrap\\":\\"yarn && npm run check-versions && lerna run prepublish\\",\\"lint:flow\\":\\"babel-node scripts/flow-check.js\\",\\"remotedev\\":\\"remotedev --hostname=localhost --port=19999\\",\\"test_bkup\\":\\"npm run lint && npm run test-node && npm run test-integration\\",\\"format-www\\":\\"prettier-eslint --write /\\"www/*.js/\\" /\\"www/src/**/*.js/\\"\\",\\"test:watch\\":\\"jest --watch\\",\\"test:update\\":\\"jest --updateSnapshot\\",\\"publish-next\\":\\"lerna publish --npm-tag=next\\",\\"check-versions\\":\\"babel-node scripts/check-versions.js\\",\\"format-scripts\\":\\"prettier-eslint --write /\\"scripts/**/*.js/\\"\\",\\"publish-canary\\":\\"lerna publish --canary --yes\\",\\"format-examples\\":\\"prettier-eslint --write /\\"examples/**/gatsby-node.js/\\" /\\"examples/**/gatsby-config.js/\\" /\\"examples/**/src/**/*.js/\\"\\",\\"format-packages\\":\\"prettier-eslint --write /\\"packages/*/src/**/*.js/\\"\\",\\"format-cache-dir\\":\\"prettier-eslint --write /\\"packages/gatsby/cache-dir/*.js/\\"\\"},\\"workspaces\\":[\\"packages/*\\"],\\"eslintIgnore\\":[\\"interfaces\\",\\"**/__tests__/fixtures/\\"],\\"devDependencies\\":{\\"glob\\":\\"^7.1.1\\",\\"jest\\":\\"^20.0.4\\",\\"plop\\":\\"^1.8.1\\",\\"lerna\\":\\"^2.1.1\\",\\"eslint\\":\\"^4.5.0\\",\\"rimraf\\":\\"^2.6.1\\",\\"chokidar\\":\\"^1.7.0\\",\\"flow-bin\\":\\"^0.42.0\\",\\"jest-cli\\":\\"^20.0.4\\",\\"prettier\\":\\"^1.7.0\\",\\"babel-cli\\":\\"^6.26.0\\",\\"cross-env\\":\\"^5.0.5\\",\\"babel-jest\\":\\"^20.0.3\\",\\"babel-eslint\\":\\"^7.2.3\\",\\"babel-runtime\\":\\"^6.26.0\\",\\"babel-register\\":\\"^6.26.0\\",\\"babel-preset-env\\":\\"^1.6.0\\",\\"remotedev-server\\":\\"^0.2.3\\",\\"babel-preset-flow\\":\\"^6.23.0\\",\\"babel-preset-react\\":\\"^6.24.1\\",\\"babel-plugin-lodash\\":\\"^3.2.11\\",\\"eslint-plugin-react\\":\\"^7.3.0\\",\\"prettier-eslint-cli\\":\\"4.2.x\\",\\"babel-preset-stage-0\\":\\"^6.24.1\\",\\"eslint-config-google\\":\\"^0.9.1\\",\\"eslint-plugin-import\\":\\"^2.7.0\\",\\"eslint-config-prettier\\":\\"^2.5.0\\",\\"eslint-plugin-flowtype\\":\\"^2.35.0\\",\\"eslint-plugin-jsx-a11y\\":\\"^6.0.2\\",\\"eslint-plugin-prettier\\":\\"^2.2.0\\",\\"eslint-plugin-flow-vars\\":\\"^0.5.0\\",\\"babel-plugin-transform-runtime\\":\\"^6.23.0\\",\\"babel-plugin-add-module-exports\\":\\"^0.2.1\\",\\"babel-plugin-transform-flow-strip-types\\":\\"^6.22.0\\",\\"babel-plugin-transform-async-to-generator\\":\\"^6.24.1\\"}}", - "contentDigest": "2018-08-13T14:27:12.458Z", - "mediaType": "application/json", - "type": "contentfulJsonTestJsonTestJsonNode", - }, - "parent": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry___de", - "private": true, - "scripts": Object { - "bootstrap": "yarn && npm run check-versions && lerna run prepublish", - "check-versions": "babel-node scripts/check-versions.js", - "format": "npm run format-packages && npm run format-cache-dir && npm run format-www && npm run format-examples && npm run format-scripts", - "format-cache-dir": "prettier-eslint --write \\"packages/gatsby/cache-dir/*.js\\"", - "format-examples": "prettier-eslint --write \\"examples/**/gatsby-node.js\\" \\"examples/**/gatsby-config.js\\" \\"examples/**/src/**/*.js\\"", - "format-packages": "prettier-eslint --write \\"packages/*/src/**/*.js\\"", - "format-scripts": "prettier-eslint --write \\"scripts/**/*.js\\"", - "format-www": "prettier-eslint --write \\"www/*.js\\" \\"www/src/**/*.js\\"", - "jest": "jest", - "lerna": "lerna", - "lint": "eslint --ext .js,.jsx packages/**/src", - "lint:flow": "babel-node scripts/flow-check.js", - "plop": "plop", - "publish": "lerna publish", - "publish-canary": "lerna publish --canary --yes", - "publish-next": "lerna publish --npm-tag=next", - "remotedev": "remotedev --hostname=localhost --port=19999", - "test": "yarn lint && yarn jest", - "test:update": "jest --updateSnapshot", - "test:watch": "jest --watch", - "test_bkup": "npm run lint && npm run test-node && npm run test-integration", - "watch": "lerna run watch --no-sort --stream --concurrency 999", + "jsonStringTest": Array [ + "test", + ], + "jsonTest": Object { + "devDependencies": Object { + "babel-cli": "^6.26.0", + "babel-eslint": "^7.2.3", + "babel-jest": "^20.0.3", + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-lodash": "^3.2.11", + "babel-plugin-transform-async-to-generator": "^6.24.1", + "babel-plugin-transform-flow-strip-types": "^6.22.0", + "babel-plugin-transform-runtime": "^6.23.0", + "babel-preset-env": "^1.6.0", + "babel-preset-flow": "^6.23.0", + "babel-preset-react": "^6.24.1", + "babel-preset-stage-0": "^6.24.1", + "babel-register": "^6.26.0", + "babel-runtime": "^6.26.0", + "chokidar": "^1.7.0", + "cross-env": "^5.0.5", + "eslint": "^4.5.0", + "eslint-config-google": "^0.9.1", + "eslint-config-prettier": "^2.5.0", + "eslint-plugin-flow-vars": "^0.5.0", + "eslint-plugin-flowtype": "^2.35.0", + "eslint-plugin-import": "^2.7.0", + "eslint-plugin-jsx-a11y": "^6.0.2", + "eslint-plugin-prettier": "^2.2.0", + "eslint-plugin-react": "^7.3.0", + "flow-bin": "^0.42.0", + "glob": "^7.1.1", + "jest": "^20.0.4", + "jest-cli": "^20.0.4", + "lerna": "^2.1.1", + "plop": "^1.8.1", + "prettier": "^1.7.0", + "prettier-eslint-cli": "4.2.x", + "remotedev-server": "^0.2.3", + "rimraf": "^2.6.1", + }, + "engines": Object { + "yarn": "^1.2.1", + }, + "eslintIgnore": Array [ + "interfaces", + "**/__tests__/fixtures/", + ], + "private": true, + "scripts": Object { + "bootstrap": "yarn && npm run check-versions && lerna run prepublish", + "check-versions": "babel-node scripts/check-versions.js", + "format": "npm run format-packages && npm run format-cache-dir && npm run format-www && npm run format-examples && npm run format-scripts", + "format-cache-dir": "prettier-eslint --write \\"packages/gatsby/cache-dir/*.js\\"", + "format-examples": "prettier-eslint --write \\"examples/**/gatsby-node.js\\" \\"examples/**/gatsby-config.js\\" \\"examples/**/src/**/*.js\\"", + "format-packages": "prettier-eslint --write \\"packages/*/src/**/*.js\\"", + "format-scripts": "prettier-eslint --write \\"scripts/**/*.js\\"", + "format-www": "prettier-eslint --write \\"www/*.js\\" \\"www/src/**/*.js\\"", + "jest": "jest", + "lerna": "lerna", + "lint": "eslint --ext .js,.jsx packages/**/src", + "lint:flow": "babel-node scripts/flow-check.js", + "plop": "plop", + "publish": "lerna publish", + "publish-canary": "lerna publish --canary --yes", + "publish-next": "lerna publish --npm-tag=next", + "remotedev": "remotedev --hostname=localhost --port=19999", + "test": "yarn lint && yarn jest", + "test:update": "jest --updateSnapshot", + "test:watch": "jest --watch", + "test_bkup": "npm run lint && npm run test-node && npm run test-integration", + "watch": "lerna run watch --no-sort --stream --concurrency 999", + }, + "workspaces": Array [ + "packages/*", + ], }, + "parent": "JSON-test", "sys": Object { - "type": "Entry", - }, - "workspaces": Array [ - "packages/*", - ], - }, - ], - Array [ - Object { - "children": Array [], - "content": "test", - "id": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry___dejsonStringTest0JSONNode", - "internal": Object { - "content": "\\"test\\"", - "contentDigest": "2018-08-13T14:27:12.458Z", - "mediaType": "application/json", - "type": "contentfulJsonTestJsonStringTestJsonNode", - }, - "parent": "rocybtov1ozk___c71mfnH4QKsSsQmgoaQuq6O___Entry___de", - "sys": Object { + "contentType___NODE": "JSON-test", + "environmentId": "master", + "firstPublishedAt": "2017-11-28T02:16:10.604Z", + "id": "c71mfnH4QKsSsQmgoaQuq6O", + "locale": "de", + "publishedAt": "2018-08-13T14:27:12.458Z", + "publishedVersion": 4, + "spaceId": "rocybtov1ozk", "type": "Entry", }, }, ], Array [ Object { - "children": Array [], "description": "", "displayField": "title", "id": "Remark Test", @@ -15581,48 +14307,47 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "type": "ContentfulContentType", }, "name": "Remark Test", - "parent": null, "sys": Object { + "environmentId": "master", + "firstPublishedAt": "2018-05-28T08:43:09.218Z", + "id": "remarkTest", + "locale": "en-US", + "publishedAt": "2018-05-28T08:43:09.218Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "ContentType", }, }, ], Array [ Object { - "children": Array [ - "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___EntrycontentTextNode", - ], + "children": Array [], "content___NODE": "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___EntrycontentTextNode", - "contentful_id": "c4L2GhTsJtCseMYM8Wia64i", - "createdAt": "2018-05-28T08:49:06.230Z", "id": "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___Entry", "internal": Object { "contentDigest": "2018-05-28T08:49:06.230Z", "type": "ContentfulRemarkTest", }, - "node_locale": "en-US", "parent": "Remark Test", - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "remarkTest", - "id": "remarkTest", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 1, + "contentType___NODE": "Remark Test", + "environmentId": "master", + "firstPublishedAt": "2018-05-28T08:49:06.230Z", + "id": "c4L2GhTsJtCseMYM8Wia64i", + "locale": "en-US", + "publishedAt": "2018-05-28T08:49:06.230Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "title": "Contentful images inlined in Markdown", - "updatedAt": "2018-05-28T08:49:06.230Z", }, ], Array [ Object { - "children": Array [], - "content": "## Toys + "id": "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___EntrycontentTextNode", + "internal": Object { + "content": "## Toys ![Toys](//images.ctfassets.net/rocybtov1ozk/6t4HKjytPi0mYgs240wkG/6e730b1e6c2a46929239019240c037e6/toys_512pxGREY.png) @@ -15645,9 +14370,12 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff ## Hudson Wall Cup ![Hudson Wall Cup ](//images.ctfassets.net/rocybtov1ozk/Xc0ny7GWsMEMCeASWO2um/af8e29320c04af689798afe96e2345c7/jqvtazcyfwseah9fmysz.jpg)", - "id": "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___EntrycontentTextNode", - "internal": Object { - "content": "## Toys + "contentDigest": "2018-05-28T08:49:06.230Z", + "mediaType": "text/markdown", + "type": "ContentfulNodeTypeText", + }, + "parent": "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___Entry", + "raw": "## Toys ![Toys](//images.ctfassets.net/rocybtov1ozk/6t4HKjytPi0mYgs240wkG/6e730b1e6c2a46929239019240c037e6/toys_512pxGREY.png) @@ -15670,19 +14398,10 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff ## Hudson Wall Cup ![Hudson Wall Cup ](//images.ctfassets.net/rocybtov1ozk/Xc0ny7GWsMEMCeASWO2um/af8e29320c04af689798afe96e2345c7/jqvtazcyfwseah9fmysz.jpg)", - "contentDigest": "2018-05-28T08:49:06.230Z", - "mediaType": "text/markdown", - "type": "contentfulRemarkTestContentTextNode", - }, - "parent": "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___Entry", - "sys": Object { - "type": "Entry", - }, }, ], Array [ Object { - "children": Array [], "description": "", "displayField": "title", "id": "Remark Test", @@ -15691,48 +14410,47 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff "type": "ContentfulContentType", }, "name": "Remark Test", - "parent": null, "sys": Object { + "environmentId": "master", + "firstPublishedAt": "2018-05-28T08:43:09.218Z", + "id": "remarkTest", + "locale": "de", + "publishedAt": "2018-05-28T08:43:09.218Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "ContentType", }, }, ], Array [ Object { - "children": Array [ - "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___Entry___decontentTextNode", - ], + "children": Array [], "content___NODE": "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___Entry___decontentTextNode", - "contentful_id": "c4L2GhTsJtCseMYM8Wia64i", - "createdAt": "2018-05-28T08:49:06.230Z", "id": "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___Entry___de", "internal": Object { "contentDigest": "2018-05-28T08:49:06.230Z", "type": "ContentfulRemarkTest", }, - "node_locale": "de", "parent": "Remark Test", - "spaceId": "rocybtov1ozk", "sys": Object { - "contentType": Object { - "sys": Object { - "contentful_id": "remarkTest", - "id": "remarkTest", - "linkType": "ContentType", - "type": "Link", - }, - }, - "revision": 1, + "contentType___NODE": "Remark Test", + "environmentId": "master", + "firstPublishedAt": "2018-05-28T08:49:06.230Z", + "id": "c4L2GhTsJtCseMYM8Wia64i", + "locale": "de", + "publishedAt": "2018-05-28T08:49:06.230Z", + "publishedVersion": 1, + "spaceId": "rocybtov1ozk", "type": "Entry", }, "title": "Contentful images inlined in Markdown", - "updatedAt": "2018-05-28T08:49:06.230Z", }, ], Array [ Object { - "children": Array [], - "content": "## Toys + "id": "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___Entry___decontentTextNode", + "internal": Object { + "content": "## Toys ![Toys](//images.ctfassets.net/rocybtov1ozk/6t4HKjytPi0mYgs240wkG/6e730b1e6c2a46929239019240c037e6/toys_512pxGREY.png) @@ -15755,9 +14473,12 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff ## Hudson Wall Cup ![Hudson Wall Cup ](//images.ctfassets.net/rocybtov1ozk/Xc0ny7GWsMEMCeASWO2um/af8e29320c04af689798afe96e2345c7/jqvtazcyfwseah9fmysz.jpg)", - "id": "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___Entry___decontentTextNode", - "internal": Object { - "content": "## Toys + "contentDigest": "2018-05-28T08:49:06.230Z", + "mediaType": "text/markdown", + "type": "ContentfulNodeTypeText", + }, + "parent": "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___Entry___de", + "raw": "## Toys ![Toys](//images.ctfassets.net/rocybtov1ozk/6t4HKjytPi0mYgs240wkG/6e730b1e6c2a46929239019240c037e6/toys_512pxGREY.png) @@ -15780,14 +14501,6 @@ Unsere Lemnos Produkte werden sorgfältig von unseren Handwerkern fein geschliff ## Hudson Wall Cup ![Hudson Wall Cup ](//images.ctfassets.net/rocybtov1ozk/Xc0ny7GWsMEMCeASWO2um/af8e29320c04af689798afe96e2345c7/jqvtazcyfwseah9fmysz.jpg)", - "contentDigest": "2018-05-28T08:49:06.230Z", - "mediaType": "text/markdown", - "type": "contentfulRemarkTestContentTextNode", - }, - "parent": "rocybtov1ozk___c4L2GhTsJtCseMYM8Wia64i___Entry___de", - "sys": Object { - "type": "Entry", - }, }, ], ] diff --git a/packages/gatsby-source-contentful/src/__tests__/download-contentful-assets.js b/packages/gatsby-source-contentful/src/__tests__/download-contentful-assets.js index de3a56eaeb667..7128698459c7c 100644 --- a/packages/gatsby-source-contentful/src/__tests__/download-contentful-assets.js +++ b/packages/gatsby-source-contentful/src/__tests__/download-contentful-assets.js @@ -22,35 +22,39 @@ const reporter = { const fixtures = [ { id: `aa1beda4-b14a-50f5-89a8-222992a46a41`, - contentful_id: `idJjXOxmNga8CSnQGEwTw`, internal: { owner: `gatsby-source-contentful`, type: `ContentfulAsset`, }, title: `TundraUS`, - node_locale: `en-US`, file: { url: `//images.ctfassets.net/testing/us-image.jpeg`, }, localFile: { base: `us-image.jpeg`, }, + sys: { + locale: `en-US`, + id: `idJjXOxmNga8CSnQGEwTw`, + }, }, { id: `586c12ca-fbe3-5acd-94ee-7598bf3f6d77`, - contentful_id: `idJjXOxmNga8CSnQGEwTw`, internal: { owner: `gatsby-source-contentful`, type: `ContentfulAsset`, }, title: `TundraFR`, - node_locale: `fr`, file: { url: `//images.ctfassets.net/testing/fr-image.jpg`, }, localFile: { base: `fr-image.jpg`, }, + sys: { + locale: `fr`, + id: `idJjXOxmNga8CSnQGEwTw`, + }, }, ] @@ -70,10 +74,10 @@ describe.only(`downloadContentfulAssets`, () => { fixtures.forEach(n => { expect(cache.get).toHaveBeenCalledWith( - `contentful-asset-${n.contentful_id}-${n.node_locale}` + `contentful-asset-${n.sys.id}-${n.sys.locale}` ) expect(cache.set).toHaveBeenCalledWith( - `contentful-asset-${n.contentful_id}-${n.node_locale}`, + `contentful-asset-${n.sys.id}-${n.sys.locale}`, expect.anything() ) }) diff --git a/packages/gatsby-source-contentful/src/__tests__/gatsby-node.js b/packages/gatsby-source-contentful/src/__tests__/gatsby-node.js index c040cc37831bb..0185691116869 100644 --- a/packages/gatsby-source-contentful/src/__tests__/gatsby-node.js +++ b/packages/gatsby-source-contentful/src/__tests__/gatsby-node.js @@ -672,7 +672,7 @@ describe(`gatsby-node`, () => { ) }) - it(`stores rich text as raw with references attached`, async () => { + it(`stores rich text as JSON`, async () => { fetch.mockImplementationOnce(richTextFixture.initialSync) // initial sync @@ -694,13 +694,11 @@ describe(`gatsby-node`, () => { const initNodes = getNodes() const homeNodes = initNodes.filter( - ({ contentful_id: id }) => id === `6KpLS2NZyB3KAvDzWf4Ukh` + ({ sys: { id } }) => id === `6KpLS2NZyB3KAvDzWf4Ukh` ) + homeNodes.forEach(homeNode => { - expect(homeNode.content.references___NODE).toStrictEqual([ - ...new Set(homeNode.content.references___NODE), - ]) - expect(homeNode.content.references___NODE).toMatchSnapshot() + expect(homeNode.content).toMatchSnapshot() }) }) diff --git a/packages/gatsby-source-contentful/src/__tests__/normalize.js b/packages/gatsby-source-contentful/src/__tests__/normalize.js index 226fc44d69dc2..db35127aac624 100644 --- a/packages/gatsby-source-contentful/src/__tests__/normalize.js +++ b/packages/gatsby-source-contentful/src/__tests__/normalize.js @@ -1,4 +1,6 @@ const normalize = require(`../normalize`) +const { restrictedNodeFields } = require(`../config`) + const { currentSyncData, contentTypeItems, @@ -8,15 +10,6 @@ const { } = require(`./data.json`) const conflictFieldPrefix = `contentful_test` -// restrictedNodeFields from here https://www.gatsbyjs.org/docs/node-interface/ -const restrictedNodeFields = [ - `id`, - `children`, - `contentful_id`, - `parent`, - `fields`, - `internal`, -] describe(`Process contentful data (by name)`, () => { let entryList @@ -78,7 +71,7 @@ describe(`Process contentful data (by name)`, () => { expect(createNode.mock.calls).toMatchSnapshot() // Relevant to compare to compare warm and cold situation. Actual number not relevant. - expect(createNode.mock.calls.length).toBe(74) // "cold build entries" count + expect(createNode.mock.calls.length).toBe(70) // "cold build entries" count }) it(`creates nodes for each asset`, () => { @@ -134,7 +127,7 @@ describe(`Skip existing nodes in warm build`, () => { // returned is not relevant to test so update if anything breaks. return { id, - internal: { contentDigest: entryList[0][0].sys.updatedAt }, + internal: { contentDigest: entryList[0][0].sys.publishedAt }, } } // All other nodes are new ("unknown") @@ -161,7 +154,7 @@ describe(`Skip existing nodes in warm build`, () => { // Relevant to compare to compare warm and cold situation. Actual number not relevant. // This number ought to be less than the cold build - expect(createNode.mock.calls.length).toBe(71) // "warm build where entry was not changed" count + expect(createNode.mock.calls.length).toBe(70) // "warm build where entry was not changed" count }) it(`creates nodes for each asset`, () => { @@ -218,7 +211,7 @@ describe(`Process existing mutated nodes in warm build`, () => { return { id, internal: { - contentDigest: entryList[0][0].sys.updatedAt + `changed`, + contentDigest: entryList[0][0].sys.publishedAt + `changed`, }, } } @@ -246,7 +239,7 @@ describe(`Process existing mutated nodes in warm build`, () => { // Relevant to compare to compare warm and cold situation. Actual number not relevant. // This number ought to be the same as the cold build - expect(createNode.mock.calls.length).toBe(74) // "warm build where entry was changed" count + expect(createNode.mock.calls.length).toBe(70) // "warm build where entry was changed" count }) it(`creates nodes for each asset`, () => { diff --git a/packages/gatsby-source-contentful/src/__tests__/rich-text.js b/packages/gatsby-source-contentful/src/__tests__/rich-text.js index a7798736c7f79..c8f558c4c00b4 100644 --- a/packages/gatsby-source-contentful/src/__tests__/rich-text.js +++ b/packages/gatsby-source-contentful/src/__tests__/rich-text.js @@ -5,7 +5,7 @@ import { BLOCKS, INLINES } from "@contentful/rich-text-types" import { initialSync } from "../__fixtures__/rich-text-data" import { cloneDeep } from "lodash" -const raw = JSON.stringify({ +const raw = { nodeType: `document`, data: {}, content: [ @@ -401,7 +401,7 @@ const raw = JSON.stringify({ data: {}, }, ], -}) +} const fixtures = initialSync().currentSyncData @@ -409,7 +409,6 @@ const references = [ ...fixtures.entries.map(entity => { return { sys: entity.sys, - contentful_id: entity.sys.id, __typename: `ContentfulContent`, ...entity.fields, } @@ -417,7 +416,6 @@ const references = [ ...fixtures.assets.map(entity => { return { sys: entity.sys, - contentful_id: entity.sys.id, __typename: `ContentfulAsset`, ...entity.fields, } @@ -443,11 +441,7 @@ describe(`rich text`, () => { ) } - return ( - - Resolved inline Entry ({node.data.target.contentful_id}) - - ) + return Resolved inline Entry ({node.data.target.sys.id}) }, [INLINES.ENTRY_HYPERLINK]: node => { if (!node.data.target) { @@ -458,9 +452,7 @@ describe(`rich text`, () => { ) } return ( - - Resolved entry Hyperlink ({node.data.target.contentful_id}) - + Resolved entry Hyperlink ({node.data.target.sys.id}) ) }, [INLINES.ASSET_HYPERLINK]: node => { @@ -472,9 +464,7 @@ describe(`rich text`, () => { ) } return ( - - Resolved asset Hyperlink ({node.data.target.contentful_id}) - + Resolved asset Hyperlink ({node.data.target.sys.id}) ) }, [BLOCKS.EMBEDDED_ENTRY]: node => { @@ -486,7 +476,7 @@ describe(`rich text`, () => { return (

Resolved embedded Entry: {node.data.target.title[`en-US`]} ( - {node.data.target.contentful_id}) + {node.data.target.sys.id})

) }, @@ -499,7 +489,7 @@ describe(`rich text`, () => { return (

Resolved embedded Asset: {node.data.target.title[`en-US`]} ( - {node.data.target.contentful_id}) + {node.data.target.sys.id})

) }, diff --git a/packages/gatsby-source-contentful/src/config.js b/packages/gatsby-source-contentful/src/config.js new file mode 100644 index 0000000000000..0fd811c357a80 --- /dev/null +++ b/packages/gatsby-source-contentful/src/config.js @@ -0,0 +1,10 @@ +export const restrictedNodeFields = [ + // restrictedNodeFields from here https://www.gatsbyjs.org/docs/node-interface/ + `id`, + `children`, + `parent`, + `fields`, + `internal`, + // Contentful Common resource attributes: https://www.contentful.com/developers/docs/references/content-delivery-api/#/introduction/common-resource-attributes + `sys`, +] diff --git a/packages/gatsby-source-contentful/src/download-contentful-assets.js b/packages/gatsby-source-contentful/src/download-contentful-assets.js index 6c1548238d91b..17db9e6054dfd 100644 --- a/packages/gatsby-source-contentful/src/download-contentful-assets.js +++ b/packages/gatsby-source-contentful/src/download-contentful-assets.js @@ -50,7 +50,9 @@ const downloadContentfulAssets = async gatsbyFunctions => { await distributeWorkload( assetNodes.map(node => async () => { let fileNodeID - const { contentful_id: id, node_locale: locale } = node + const { + sys: { id, locale }, + } = node const remoteDataCacheKey = `contentful-asset-${id}-${locale}` const cacheRemoteData = await cache.get(remoteDataCacheKey) if (!node.file) { diff --git a/packages/gatsby-source-contentful/src/gatsby-node.js b/packages/gatsby-source-contentful/src/gatsby-node.js index c5814d5883b61..0d0889a8b0ff0 100644 --- a/packages/gatsby-source-contentful/src/gatsby-node.js +++ b/packages/gatsby-source-contentful/src/gatsby-node.js @@ -9,22 +9,13 @@ const { CODES } = require(`./report`) const normalize = require(`./normalize`) const fetchData = require(`./fetch`) +const { restrictedNodeFields } = require(`./config`) const { generateSchema } = require(`./generate-schema`) const { createPluginConfig, maskText } = require(`./plugin-options`) const { downloadContentfulAssets } = require(`./download-contentful-assets`) const conflictFieldPrefix = `contentful` -// restrictedNodeFields from here https://www.gatsbyjs.org/docs/node-interface/ -const restrictedNodeFields = [ - `children`, - `contentful_id`, - `fields`, - `id`, - `internal`, - `parent`, -] - const restrictedContentTypes = [`entity`, `reference`] exports.setFieldsOnGraphQLNodeType = require(`./extend-node-type`).extendNodeType @@ -536,17 +527,21 @@ exports.sourceNodes = async ( const newOrUpdatedEntries = new Set() entryList.forEach(entries => { entries.forEach(entry => { - newOrUpdatedEntries.add(`${entry.sys.id}___${entry.sys.type}`) + newOrUpdatedEntries.add(normalize.generateReferenceId(entry)) }) }) // Update existing entry nodes that weren't updated but that need reverse // links added. existingNodes - .filter(n => newOrUpdatedEntries.has(`${n.id}___${n.sys.type}`)) + .filter( + n => + n?.sys?.type && + newOrUpdatedEntries.has(normalize.generateReferenceId(n)) + ) .forEach(n => { - if (foreignReferenceMap[`${n.id}___${n.sys.type}`]) { - foreignReferenceMap[`${n.id}___${n.sys.type}`].forEach( + if (foreignReferenceMap[normalize.generateReferenceId(n)]) { + foreignReferenceMap[normalize.generateReferenceId(n)].forEach( foreignReference => { // Add reverse links if (n[foreignReference.name]) { diff --git a/packages/gatsby-source-contentful/src/generate-schema.js b/packages/gatsby-source-contentful/src/generate-schema.js index a709a195f7026..c946e82fe2165 100644 --- a/packages/gatsby-source-contentful/src/generate-schema.js +++ b/packages/gatsby-source-contentful/src/generate-schema.js @@ -108,13 +108,8 @@ function generateAssetTypes({ createTypes }) { file: ContentfulAssetFile title: String description: String - node_locale: String - sys: ContentfulAssetSys - contentful_id: String! + sys: ContentfulInternalSys id: ID! - spaceId: String! - createdAt: Date @dateformat - updatedAt: Date @dateformat } `) @@ -140,13 +135,6 @@ function generateAssetTypes({ createTypes }) { height: Int } `) - - createTypes(` - type ContentfulAssetSys { - type: String - revision: Int - } - `) } export function generateSchema({ @@ -157,8 +145,8 @@ export function generateSchema({ }) { createTypes(` interface ContentfulInternalReference implements Node { - contentful_id: String! id: ID! + sys: ContentfulInternalSys } `) @@ -173,17 +161,21 @@ export function generateSchema({ createTypes(` type ContentfulInternalSys @dontInfer { - type: String - revision: Int + type: String! + id: String! + spaceId: String! + environmentId: String! contentType: ContentfulContentType @link(by: "id", from: "contentType___NODE") + firstPublishedAt: Date! + publishedAt: Date! + publishedVersion: Int! + locale: String! } `) createTypes(` interface ContentfulEntry implements Node @dontInfer { - contentful_id: String! id: ID! - spaceId: String! sys: ContentfulInternalSys } `) @@ -227,14 +219,20 @@ export function generateSchema({ } traverse(source) - return context.nodeModel - .getAllNodes() - .filter(node => - node.internal.owner === `gatsby-source-contentful` && - node.internal.type === `ContentfulAsset` - ? referencedAssets.has(node.contentful_id) - : referencedEntries.has(node.contentful_id) - ) + // Get all nodes and return all that got referenced in the rich text + return context.nodeModel.getAllNodes().filter(node => { + if ( + !( + node.internal.owner === `gatsby-source-contentful` && + node?.sys?.id + ) + ) { + return false + } + return node.internal.type === `ContentfulAsset` + ? referencedAssets.has(node.sys.id) + : referencedEntries.has(node.sys.id) + }) }, }, }, @@ -287,15 +285,7 @@ export function generateSchema({ schema.buildObjectType({ name: makeTypeName(type), fields: { - contentful_id: { type: `String!` }, id: { type: `ID!` }, - // @todo reconsider the node per locale workflow - node_locale: { type: `String!` }, - // @todo these should be real dates and in sys - spaceId: { type: `String!` }, - createdAt: { type: `Date`, extensions: { dateformat: {} } }, - updatedAt: { type: `Date`, extensions: { dateformat: {} } }, - // @todo add metadata sys: { type: `ContentfulInternalSys` }, ...fields, }, diff --git a/packages/gatsby-source-contentful/src/normalize.js b/packages/gatsby-source-contentful/src/normalize.js index 668df580d92b7..21ccd25050945 100644 --- a/packages/gatsby-source-contentful/src/normalize.js +++ b/packages/gatsby-source-contentful/src/normalize.js @@ -1,5 +1,4 @@ const _ = require(`lodash`) -const stringify = require(`json-stringify-safe`) const typePrefix = `Contentful` export const makeTypeName = type => @@ -46,12 +45,19 @@ const makeId = ({ spaceId, id, currentLocale, defaultLocale, type }) => { exports.makeId = makeId +// Generates an unique id over multiple spaces for Gatsby const makeMakeId = ({ currentLocale, defaultLocale, createNodeId }) => ( spaceId, id, type ) => createNodeId(makeId({ spaceId, id, currentLocale, defaultLocale, type })) +// Generates an unique id per space for reference resolving +const generateReferenceId = nodeOrLink => + `${nodeOrLink.sys.id}___${nodeOrLink.sys.linkType || nodeOrLink.sys.type}` + +exports.generateReferenceId = generateReferenceId + exports.buildEntryList = ({ contentTypeItems, mergedSyncData }) => { // Create buckets for each type sys.id that we care about (we will always want an array for each, even if its empty) const map = new Map( @@ -75,22 +81,18 @@ exports.buildResolvableSet = ({ }) => { const resolvable = new Set() existingNodes.forEach(node => { - if (node.internal.owner === `gatsby-source-contentful`) { + if (node.internal.owner === `gatsby-source-contentful` && node?.sys?.id) { // We need to add only root level resolvable (assets and entries) // Derived nodes (markdown or JSON) will be recreated if needed. - resolvable.add(`${node.contentful_id}___${node.sys.type}`) + resolvable.add(generateReferenceId(node)) } }) entryList.forEach(entries => { - entries.forEach(entry => - resolvable.add(`${entry.sys.id}___${entry.sys.type}`) - ) + entries.forEach(entry => resolvable.add(generateReferenceId(entry))) }) - assets.forEach(assetItem => - resolvable.add(`${assetItem.sys.id}___${assetItem.sys.type}`) - ) + assets.forEach(assetItem => resolvable.add(generateReferenceId(assetItem))) return resolvable } @@ -131,7 +133,7 @@ exports.buildForeignReferenceMap = ({ entryItemFieldValue[0].sys.id ) { entryItemFieldValue.forEach(v => { - const key = `${v.sys.id}___${v.sys.linkType || v.sys.type}` + const key = generateReferenceId(v) // Don't create link to an unresolvable field. if (!resolvable.has(key)) { return @@ -152,9 +154,7 @@ exports.buildForeignReferenceMap = ({ entryItemFieldValue?.sys?.type && entryItemFieldValue.sys.id ) { - const key = `${entryItemFieldValue.sys.id}___${ - entryItemFieldValue.sys.linkType || entryItemFieldValue.sys.type - }` + const key = generateReferenceId(entryItemFieldValue) // Don't create link to an unresolvable field. if (!resolvable.has(key)) { return @@ -188,8 +188,8 @@ function prepareTextNode(id, node, key, text) { type: `ContentfulNodeTypeText`, mediaType: `text/markdown`, content: str, - // entryItem.sys.updatedAt is source of truth from contentful - contentDigest: node.updatedAt, + // entryItem.sys.publishedAt is source of truth from contentful + contentDigest: node.sys.publishedAt, }, } @@ -300,11 +300,7 @@ exports.createNodesForContentType = ({ // creating an empty node field in case when original key field value // is empty due to links to missing entities const resolvableEntryItemFieldValue = entryItemFieldValue - .filter(function (v) { - return resolvable.has( - `${v.sys.id}___${v.sys.linkType || v.sys.type}` - ) - }) + .filter(v => resolvable.has(generateReferenceId(v))) .map(function (v) { return mId( space.sys.id, @@ -326,14 +322,7 @@ exports.createNodesForContentType = ({ entryItemFieldValue.sys.type && entryItemFieldValue.sys.id ) { - if ( - resolvable.has( - `${entryItemFieldValue.sys.id}___${ - entryItemFieldValue.sys.linkType || - entryItemFieldValue.sys.type - }` - ) - ) { + if (resolvable.has(generateReferenceId(entryItemFieldValue))) { entryItemFields[`${entryItemFieldKey}___NODE`] = mId( space.sys.id, entryItemFieldValue.sys.id, @@ -348,7 +337,7 @@ exports.createNodesForContentType = ({ // Add reverse linkages if there are any for this node const foreignReferences = - foreignReferenceMap[`${entryItem.sys.id}___${entryItem.sys.type}`] + foreignReferenceMap[generateReferenceId(entryItem)] if (foreignReferences) { foreignReferences.forEach(foreignReference => { const existingReference = entryItemFields[foreignReference.name] @@ -379,27 +368,9 @@ exports.createNodesForContentType = ({ }) } - const sys = { - type: entryItem.sys.type, - } - - // Revision applies to entries, assets, and content types - if (entryItem.sys.revision) { - sys.revision = entryItem.sys.revision - } - - // Content type applies to entries only - if (entryItem.sys.contentType) { - sys.contentType___NODE = createNodeId(contentTypeItemId) - } - // Create actual entry node let entryNode = { id: entryNodeId, - spaceId: space.sys.id, - contentful_id: entryItem.sys.id, - createdAt: entryItem.sys.createdAt, - updatedAt: entryItem.sys.updatedAt, parent: contentTypeItemId, children: [], internal: { @@ -407,7 +378,19 @@ exports.createNodesForContentType = ({ // The content of an entry is guaranteed to be updated if and only if the .sys.updatedAt field changed contentDigest: entryItem.sys.updatedAt, }, - sys, + // https://www.contentful.com/developers/docs/references/content-delivery-api/#/introduction/common-resource-attributes + // https://www.contentful.com/developers/docs/references/graphql/#/reference/schema-generation/sys-field + sys: { + type: entryItem.sys.type, + id: entryItem.sys.id, + locale: locale.code, + spaceId: entryItem.sys.space.sys.id, + environmentId: entryItem.sys.environment.sys.id, + contentType___NODE: createNodeId(contentTypeItemId), + firstPublishedAt: entryItem.sys.createdAt, + publishedAt: entryItem.sys.updatedAt, + publishedVersion: entryItem.sys.revision, + }, } // Replace text fields with text nodes so we can process their markdown @@ -456,7 +439,6 @@ exports.createNodesForContentType = ({ entryNode = { ...entryItemFields, ...entryNode, - node_locale: locale.code, } return entryNode @@ -464,6 +446,7 @@ exports.createNodesForContentType = ({ .filter(Boolean) // Create a node for each content type + const contentTypeNode = { id: createNodeId(contentTypeItemId), name: contentTypeItem.name, @@ -472,6 +455,18 @@ exports.createNodesForContentType = ({ internal: { type: `${makeTypeName(`ContentType`)}`, }, + // https://www.contentful.com/developers/docs/references/content-delivery-api/#/introduction/common-resource-attributes + // https://www.contentful.com/developers/docs/references/graphql/#/reference/schema-generation/sys-field + sys: { + type: contentTypeItem.sys.type, + id: contentTypeItem.sys.id, + locale: locale.code, + spaceId: contentTypeItem.sys.space.sys.id, + environmentId: contentTypeItem.sys.environment.sys.id, + firstPublishedAt: contentTypeItem.sys.createdAt, + publishedAt: contentTypeItem.sys.updatedAt, + publishedVersion: contentTypeItem.sys.revision, + }, } // The content of an entry is guaranteed to be updated if and only if the .sys.updatedAt field changed @@ -511,11 +506,7 @@ exports.createAssetNodes = ({ }) const assetNode = { - contentful_id: assetItem.sys.id, - spaceId: space.sys.id, id: mId(space.sys.id, assetItem.sys.id, assetItem.sys.type), - createdAt: assetItem.sys.createdAt, - updatedAt: assetItem.sys.updatedAt, parent: null, children: [], file: assetItem.fields.file ? getField(assetItem.fields.file) : null, @@ -523,23 +514,25 @@ exports.createAssetNodes = ({ description: assetItem.fields.description ? getField(assetItem.fields.description) : ``, - node_locale: locale.code, internal: { type: `${makeTypeName(`Asset`)}`, // The content of an asset is guaranteed to be updated if and only if the .sys.updatedAt field changed contentDigest: assetItem.sys.updatedAt, }, - // @todo we can probably remove this now + // https://www.contentful.com/developers/docs/references/content-delivery-api/#/introduction/common-resource-attributes + // https://www.contentful.com/developers/docs/references/graphql/#/reference/schema-generation/sys-field sys: { type: assetItem.sys.type, + id: assetItem.sys.id, + locale: locale.code, + spaceId: assetItem.sys.space.sys.id, + environmentId: assetItem.sys.environment.sys.id, + firstPublishedAt: assetItem.sys.createdAt, + publishedAt: assetItem.sys.updatedAt, + publishedVersion: assetItem.sys.revision, }, } - // Revision applies to entries, assets, and content types - if (assetItem.sys.revision) { - assetNode.sys.revision = assetItem.sys.revision - } - createNodePromises.push(createNode(assetNode)) }) diff --git a/packages/gatsby-source-contentful/src/rich-text.js b/packages/gatsby-source-contentful/src/rich-text.js index b6fde8b432170..31506a29996ff 100644 --- a/packages/gatsby-source-contentful/src/rich-text.js +++ b/packages/gatsby-source-contentful/src/rich-text.js @@ -23,7 +23,7 @@ function renderRichText({ raw, references }, options = {}) { .map(reference => { return { ...reference, - sys: { type: `Entry`, id: reference.contentful_id }, + sys: { type: `Entry`, id: reference.sys.id }, } }), Asset: references @@ -31,7 +31,7 @@ function renderRichText({ raw, references }, options = {}) { .map(reference => { return { ...reference, - sys: { type: `Asset`, id: reference.contentful_id }, + sys: { type: `Asset`, id: reference.sys.id }, } }), },