-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
feat(GraphQL): Webhooks on add/update/delete mutations (GRAPHQL-1045) #7494
Merged
Merged
Changes from 18 commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
102eac0
add schema for `@lambdaOnMutate`
abhimanyusinghgaur 6e78391
build and send webhook events
abhimanyusinghgaur e90dd49
Merge branch 'master' of github.com:dgraph-io/dgraph into abhimanyu/w…
abhimanyusinghgaur 6de9a0a
add a validation
abhimanyusinghgaur a65793d
fix schema tests
abhimanyusinghgaur cfc7e30
add some schema tests
abhimanyusinghgaur ea4d815
bit more validation
abhimanyusinghgaur 1b6783b
fix typename
abhimanyusinghgaur b84d6e2
add json header
abhimanyusinghgaur 446a15f
add commitTs
abhimanyusinghgaur db4fc26
Merge branch 'master' of github.com:dgraph-io/dgraph into abhimanyu/w…
abhimanyusinghgaur 029885d
fix merge
abhimanyusinghgaur ed982d8
add test
abhimanyusinghgaur 3da5d9a
fix test
abhimanyusinghgaur 9cccc42
make lambda-url namespace aware
abhimanyusinghgaur ff9c91b
skip the test for now
abhimanyusinghgaur 4ee96c4
Merge branch 'master' of github.com:dgraph-io/dgraph into abhimanyu/w…
abhimanyusinghgaur 629d0a4
fix tests
abhimanyusinghgaur 4b34c44
address nits
abhimanyusinghgaur File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
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 |
---|---|---|
|
@@ -341,7 +341,8 @@ type Region { | |
district: District | ||
} | ||
|
||
type District { | ||
type District @lambdaOnMutate(add: true, update: true, delete: true) { | ||
dgId: ID! | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit: Indentation seems off. Likely due to different tab spaces being used. |
||
id: String! @id | ||
name: String! | ||
} | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍