-
Notifications
You must be signed in to change notification settings - Fork 36
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 connector template #202
Merged
markfarkas-camunda
merged 20 commits into
main
from
153-create-template-for-graphql-deploy
Feb 10, 2023
Merged
Changes from 2 commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
d437444
feat: GraphQL connector template
markfarkas-camunda 856f06e
fix(graphql): update license headers
markfarkas-camunda 4c4a942
feat(graphql): implement GraphQL GET method without variables
markfarkas-camunda 949d43e
feat(graphql): implement POST method and variable handling
markfarkas-camunda d9afadf
fix(graphql): additional character escape, and cleanup
markfarkas-camunda 3400db7
feat(graphql): modify application.properties, code restructure
markfarkas-camunda 6a111bd
fix(graphql): make input variable names graphql specific
markfarkas-camunda 1ce9f74
fix(graphql): swap url and method in the element template
markfarkas-camunda 7a6ea75
chore(graphql): add connectors-common-library to unify http behavior
markfarkas-camunda 2cb7f8e
chore(graphql): set post as default value for method
markfarkas-camunda e6545ca
Merge branch 'main' into 153-create-template-for-graphql-deploy
markfarkas-camunda 59a6015
feat(graphql): use connectors-common-library in http-json connector, …
markfarkas-camunda 706618b
feat(graphql): add proxy behavior
markfarkas-camunda cf5d61a
chore(graphql): bundle pom cleanup
markfarkas-camunda 8768ae5
chore(graphql): add README
markfarkas-camunda ae158c9
chore(graphql): fix README format
markfarkas-camunda 7a853aa
Merge branch 'main' into 153-create-template-for-graphql-deploy
markfarkas-camunda 5b8dbab
chore(graphql): update links to point to internal documentation
markfarkas-camunda 32238f2
fix(graphql): common library licensing, null safety
markfarkas-camunda 518a5ba
fix(graphql): fix code style
markfarkas-camunda 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH under one or more contributor license agreements and licensed to you under a proprietary license. | ||
You may not use this file except in compliance with the proprietary license. | ||
The proprietary license can be either the Camunda Platform Self-Managed Free Edition license (available on Camunda’s website) or the Camunda Platform Self-Managed Enterprise Edition license (a copy you obtain when you contact Camunda). | ||
The Camunda Platform Self-Managed Free Edition comes for free but only allows for usage of the software (file) in non-production environments. | ||
If you want to use the software (file) in production, you need to purchase the Camunda Platform Self-Managed Enterprise Edition. | ||
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,38 @@ | ||
# Camunda Connector Template | ||
|
||
|
||
```bash | ||
mvn clean package | ||
``` | ||
|
||
|
||
|
||
```json | ||
{ | ||
"myProperty": "....." | ||
} | ||
``` | ||
|
||
|
||
```json | ||
{ | ||
"result": { | ||
"myProperty": "....." | ||
} | ||
} | ||
``` | ||
|
||
|
||
| Code | Description | | ||
| - | - | | ||
| FAIL | Message starts with 'fail' (ignoring case) | | ||
|
||
|
||
Run unit tests | ||
|
||
```bash | ||
mvn clean verify | ||
``` | ||
|
||
|
||
The element templates can be found in the [element-templates](element-templates) directory. |
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.
Since we have REST connector under Apache 2.0, does it make sense to make GraphQL Apache 2.0 as well?
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.
cc: @bastiankoerber
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.
Correct