-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ashi Krishnan
committed
Apr 23, 2022
1 parent
faaf8dd
commit ef9570b
Showing
40 changed files
with
9,564 additions
and
37 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 |
---|---|---|
@@ -1,3 +1 @@ | ||
node_modules | ||
core | ||
join |
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,3 @@ | ||
node_modules | ||
.dist | ||
package-lock.json |
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,9 @@ | ||
schema | ||
@core(feature: "https://specs.apollo.dev/core/v0.1") | ||
@core(feature: "https://specs.example.com/A/1.0") # name is A | ||
@core(feature: "https://specs.example.com/A/2.0") # name is A | ||
{ | ||
query: Query | ||
} | ||
|
||
directive @core(feature: String!, as: String) repeatable on SCHEMA |
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,9 @@ | ||
schema | ||
@core(feature: "https://specs.apollo.dev/core/v0.1") | ||
@core(feature: "https://specs.example.com/A/1.0") # name is A | ||
@core(feature: "https://www.specs.com/specA/1.1", as: "A") # name is A | ||
{ | ||
query: Query | ||
} | ||
|
||
directive @core(feature: String!, as: String) repeatable on SCHEMA |
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 @@ | ||
schema | ||
@core(feature: "https://specs.apollo.dev/core/v0.1") | ||
@core(feature: "https://specs.example.com/example/v1.0") | ||
{ | ||
query: Query | ||
} | ||
|
||
type Query { | ||
field: Int @example | ||
} | ||
|
||
directive @example on FIELD_DEFINITION | ||
|
||
directive @core(feature: String!, as: String) repeatable on SCHEMA |
Large diffs are not rendered by default.
Oops, something went wrong.
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,9 @@ | ||
schema | ||
@core(feature: "https://specs.apollo.dev/core/v0.1") | ||
@core(feature: "https://specs.example.com/A/1.0") # name is A | ||
@core(feature: "https://specs.example.com/A/2.0", as: "A2") # name is A2 | ||
{ | ||
query: Query | ||
} | ||
|
||
directive @core(feature: String!, as: String) repeatable on SCHEMA |
Oops, something went wrong.