generated from SAP/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Johannes Vogel <[email protected]> Co-authored-by: Daniel Hutzel <[email protected]> Co-authored-by: d049904 <[email protected]> Co-authored-by: Heiko Witteborg <[email protected]> Co-authored-by: Mahati Shankar <[email protected]> Co-authored-by: Samuel Brucksch <[email protected]> Co-authored-by: Samuel Brucksch <[email protected]> Co-authored-by: D050513 <[email protected]> Co-authored-by: sjvans <[email protected]> Co-authored-by: Mariya Yordanova <[email protected]>
- Loading branch information
1 parent
132afcd
commit 72f0246
Showing
47 changed files
with
717 additions
and
679 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: Label issues | ||
on: | ||
issues: | ||
types: | ||
- reopened | ||
- opened | ||
jobs: | ||
label_issues: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
steps: | ||
- run: gh issue edit "$NUMBER" --add-label "$LABELS" | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GH_REPO: ${{ github.repository }} | ||
NUMBER: ${{ github.event.issue.number }} | ||
LABELS: new |
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
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 |
---|---|---|
@@ -1,47 +1,49 @@ | ||
service NotAnnotated { | ||
context protocols { | ||
entity A { | ||
key id : UUID; | ||
} | ||
} | ||
|
||
service NotAnnotated { | ||
entity A as projection on protocols.A; | ||
} | ||
|
||
@protocol: 'none' | ||
service AnnotatedWithAtProtocolNone { | ||
entity A { | ||
key id : UUID; | ||
} | ||
entity A as projection on protocols.A; | ||
} | ||
|
||
@protocol: 'odata' | ||
service AnnotatedWithNonGraphQL { | ||
entity A { | ||
key id : UUID; | ||
} | ||
entity A as projection on protocols.A; | ||
} | ||
|
||
@graphql | ||
service AnnotatedWithAtGraphQL { | ||
entity A { | ||
key id : UUID; | ||
} | ||
entity A as projection on protocols.A; | ||
} | ||
|
||
@protocol: 'graphql' | ||
service AnnotatedWithAtProtocolString { | ||
entity A { | ||
key id : UUID; | ||
} | ||
entity A as projection on protocols.A; | ||
} | ||
|
||
@protocol: ['graphql'] | ||
service AnnotatedWithAtProtocolStringList { | ||
entity A { | ||
key id : UUID; | ||
} | ||
entity A as projection on protocols.A; | ||
} | ||
|
||
@protocol: [{kind: 'graphql'}] | ||
service AnnotatedWithAtProtocolObjectList { | ||
entity A { | ||
key id : UUID; | ||
} | ||
entity A as projection on protocols.A; | ||
} | ||
|
||
@protocol: { graphql } | ||
service AnnotatedWithAtProtocolObjectWithKey { | ||
entity A as projection on protocols.A; | ||
} | ||
|
||
@protocol: { graphql: 'dummy' } | ||
service AnnotatedWithAtProtocolObjectWithKeyAndValue { | ||
entity A as projection on protocols.A; | ||
} |
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 |
---|---|---|
@@ -1,5 +1,18 @@ | ||
{ | ||
"dependencies": { | ||
"@cap-js/graphql": "*" | ||
}, | ||
"devDependencies": { | ||
"@cap-js/sqlite": "*" | ||
}, | ||
"cds": { | ||
"server": { | ||
"body_parser": { | ||
"limit": "110KB" | ||
} | ||
}, | ||
"features": { | ||
"ieee754compatible": true | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.