-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: add support for Gatsby v4 (#206) * ci: change node version to 14 * fix: remove return null (#215) * fix: revert remove return null 215 This reverts commit 4939c84. * fix: allow nullable gatsbyImageData (#217) * chore: add additional fragments * fix: use newer dependencies * chore: use github actions v2 * fix: temp explicit rich text typenames * docs: update readme * fix: detect RichText automatically to create types * docs(README): add note on Bad Request * chore: cleanup demo Product fragment * docs: add note about gatsby v4 (#207) * feat: add support for Gatsby v4 (#206) * docs(README): update install instructions * fix: merge conflict * docs(README): contributing note * chore: fix contributors rc Co-authored-by: João Pedro Schmitz <oi@joaopedro.cc>
- Loading branch information
1 parent
f4a943e
commit b568ee8
Showing
18 changed files
with
4,041 additions
and
6,138 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
14.15 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
fragment ScheduledOperation on ScheduledOperation { | ||
stage | ||
remoteId: id | ||
createdAt | ||
updatedAt | ||
publishedAt | ||
description | ||
errorMessage | ||
rawPayload | ||
createdBy { | ||
... on User { | ||
remoteTypeName: __typename | ||
remoteId: id | ||
stage | ||
} | ||
} | ||
updatedBy { | ||
... on User { | ||
remoteTypeName: __typename | ||
remoteId: id | ||
stage | ||
} | ||
} | ||
publishedBy { | ||
... on User { | ||
remoteTypeName: __typename | ||
remoteId: id | ||
stage | ||
} | ||
} | ||
release { | ||
... on ScheduledRelease { | ||
remoteTypeName: __typename | ||
remoteId: id | ||
stage | ||
} | ||
} | ||
status | ||
affectedDocuments { | ||
... on Asset { | ||
remoteTypeName: __typename | ||
remoteId: id | ||
locale | ||
stage | ||
} | ||
... on Category { | ||
remoteTypeName: __typename | ||
remoteId: id | ||
locale | ||
stage | ||
} | ||
... on Product { | ||
remoteTypeName: __typename | ||
remoteId: id | ||
locale | ||
stage | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
fragment ScheduledRelease on ScheduledRelease { | ||
stage | ||
remoteId: id | ||
createdAt | ||
updatedAt | ||
publishedAt | ||
title | ||
description | ||
errorMessage | ||
isActive | ||
isImplicit | ||
releaseAt | ||
createdBy { | ||
... on User { | ||
remoteTypeName: __typename | ||
remoteId: id | ||
stage | ||
} | ||
} | ||
updatedBy { | ||
... on User { | ||
remoteTypeName: __typename | ||
remoteId: id | ||
stage | ||
} | ||
} | ||
publishedBy { | ||
... on User { | ||
remoteTypeName: __typename | ||
remoteId: id | ||
stage | ||
} | ||
} | ||
operations { | ||
... on ScheduledOperation { | ||
remoteTypeName: __typename | ||
remoteId: id | ||
stage | ||
} | ||
} | ||
status | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,6 @@ fragment User on User { | |
publishedAt | ||
name | ||
picture | ||
kind | ||
isActive | ||
kind | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
module.exports = { | ||
plugins: [require('postcss-preset-env'), require('tailwindcss')], | ||
plugins: { | ||
tailwindcss: {}, | ||
autoprefixer: {}, | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.