Skip to content

Commit

Permalink
(fix/reuse-fragments) New test case for issue with implementing not e…
Browse files Browse the repository at this point in the history
…xisting classes (#438)

* test: issue_with_implementing_not_existing_classes

* fix imports

* a little bit more familiar names of fields

* generate code without reuse-fragments
  • Loading branch information
LiLatee authored Jan 13, 2024
1 parent 6ae9dfa commit 76306e5
Show file tree
Hide file tree
Showing 28 changed files with 2,633 additions and 0 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 25 additions & 0 deletions codegen/end_to_end_test/lib/graphql/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -211,3 +211,28 @@ scalar ISODate
scalar CustomField

scalar Json

### START - issue_with_implementing_not_existing_classes
type Connection {
field1: [Field1Edge!]!
field2: Field2!
}

type Field1Edge {
field11: Field11!
}

type Field1 {
field11: Field11
}

type Field11 {
field111: Field111!
}

type Field111 {
}

type Field2 {
}
### END - issue_with_implementing_not_existing_classes

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 76306e5

Please sign in to comment.