Skip to content

Commit

Permalink
test: multi dimensional array TS type
Browse files Browse the repository at this point in the history
  • Loading branch information
dpilch committed Oct 11, 2023
1 parent f3e0c45 commit e31e841
Show file tree
Hide file tree
Showing 4 changed files with 712 additions and 311 deletions.
16 changes: 16 additions & 0 deletions packages/graphql-types-generator/test/fixtures/misc/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,24 @@ type Query {
scalarTest: Boolean!
arrayTest: [QueryObject]
echo(msg: String): String
multiDimensionalArrayTest: MultiDimensionalArrayTest
}

type QueryObject {
test: String
}

type MultiDimensionalArrayTest {
id: ID!
name: String!
abc: ABC
}

type XYZ {
id: ID!
name: String!
}

type ABC {
abc: [[XYZ]]
}
Loading

0 comments on commit e31e841

Please sign in to comment.