-
-
Notifications
You must be signed in to change notification settings - Fork 13
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
1 parent
e526479
commit a6f49b3
Showing
2 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
26 changes: 26 additions & 0 deletions
26
src/FairyBread.Tests/GeneralTests.SchemaWorks.verified.txt
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,26 @@ | ||
schema { | ||
query: Query | ||
mutation: Mutation | ||
} | ||
|
||
type Mutation { | ||
write(foo: FooInputDtoInput! bar: BarInputDtoInput!): String! | ||
} | ||
|
||
type Query { | ||
read(foo: FooInputDtoInput! bar: BarInputDtoInput): String! | ||
readWithArrayArg(foos: [FooInputDtoInput!]!): String! | ||
readWithListArg(foos: [FooInputDtoInput!]!): String! | ||
someResolver(foo: FooInputDtoInput! bar: BarInputDtoInput): String! | ||
intResolver(count: Int!): String! | ||
nullableIntResolver(count: Int): String! | ||
} | ||
|
||
input BarInputDtoInput { | ||
emailAddress: String! | ||
} | ||
|
||
input FooInputDtoInput { | ||
someInteger: Int! | ||
someString: String! | ||
} |
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