Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CTF-next: migrate using-contentful #31270

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
841d819
WIP - initial schema generation
axe312ger Apr 12, 2021
3b3fb37
allow complex field types and add date formatter for date fields
axe312ger Apr 12, 2021
ce752bc
move generic fields to reference type
axe312ger Apr 12, 2021
a963c8c
use generic types for entry sys and content types
axe312ger Apr 12, 2021
449ffa2
use generic types for rich text fields
axe312ger Apr 12, 2021
147cdec
use generic types for location fields
axe312ger Apr 12, 2021
de77472
use generic types for JSON fields
axe312ger Apr 12, 2021
d6e9e31
use generic types for Text fields
axe312ger Apr 12, 2021
83fec2d
fix: ensure links from is set properly
axe312ger Apr 12, 2021
5a2d859
rename internal interfaces to avoid name collisions
axe312ger Apr 12, 2021
897d287
properly set links for references to new generic types
axe312ger Apr 12, 2021
61ff2b4
no more create nodes for JSON, RichText and Location
axe312ger Apr 13, 2021
3a8df17
refactor: clean up code
axe312ger Apr 13, 2021
1ff6e64
refactor: reintroduce contentful sys common resource attribute #31007
axe312ger Apr 29, 2021
220624a
refactor: align Rich Text field structure to Contentful GraphQL API (…
axe312ger May 5, 2021
1f87c63
refactor: flatten Contentful asset data structure to match GraphQL AP…
axe312ger May 5, 2021
d5c5d37
update e2e snapshots
axe312ger May 20, 2021
9a4da0e
fix: render RichText without links
axe312ger Jun 11, 2021
0414814
test(e2e): update snapshots
axe312ger Jun 11, 2021
93406b0
Revert "test(e2e): update snapshots"
axe312ger Jun 11, 2021
7cbe1ba
refactor: rename schema types to avoid conflicts
axe312ger Jun 11, 2021
c3f51b0
feat: tags are now enabled by default
axe312ger Jul 21, 2021
d95e75c
fix: tags schema
axe312ger Jul 27, 2021
70841c7
refactor: clean up code and improve comments
axe312ger Jul 27, 2021
c5daf4b
clean up, fix tests, get downloadAssets working again
axe312ger Nov 18, 2021
1f1beb9
more small fixes
axe312ger Nov 19, 2021
50beb26
fix: align downloadLocal scheme and gatsby-plugin-image
axe312ger Nov 26, 2021
6c69534
style: use object syntax everywhere to define schema
axe312ger Nov 26, 2021
fb3c641
fix: make unit tests pass. Solution for deleted entries still needs work
axe312ger Nov 29, 2021
a5af79f
feat: use union for reference fields with validation (#31395)
axe312ger Nov 29, 2021
cc73545
style: rename ContentfulReference interface to ContentfulEntity
axe312ger Jan 14, 2022
c768a08
fix: readd tag support for assets
axe312ger Jan 20, 2022
6609fd2
fix reference resolving and adjust tests
axe312ger Feb 2, 2022
351d89e
Merge branch 'master' into feat/contentful-schema-generation
axe312ger Feb 9, 2022
c9ffbc6
refactor: rewrite using-contentful for schema customization
axe312ger May 5, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion e2e-tests/contentful/gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ module.exports = {
// Use: https://www.gatsbyjs.com/docs/how-to/local-development/environment-variables/
spaceId: `k8iqpp6u0ior`,
accessToken: `hO_7N0bLaCJFbu5nL3QVekwNeB_TNtg6tOCB_9qzKUw`,
enableTags: true,
downloadLocal: true,
},
},
Expand Down
Loading