File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
example/src/main/kotlin/com/expedia/graphql/sample
src/main/kotlin/com/expedia/graphql Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ class Application {
77
77
config = schemaConfig,
78
78
queries = queries.toTopLevelObjects(),
79
79
mutations = mutations.toTopLevelObjects(),
80
- subsciptions = subscriptions.toTopLevelObjects()
80
+ subscriptions = subscriptions.toTopLevelObjects()
81
81
)
82
82
83
83
logger.info(schemaPrinter.print (schema))
Original file line number Diff line number Diff line change @@ -18,8 +18,8 @@ fun toSchema(
18
18
config : SchemaGeneratorConfig ,
19
19
queries : List <TopLevelObject >,
20
20
mutations : List <TopLevelObject > = emptyList(),
21
- subsciptions : List <TopLevelObject > = emptyList()
21
+ subscriptions : List <TopLevelObject > = emptyList()
22
22
): GraphQLSchema {
23
23
val generator = SchemaGenerator (config)
24
- return generator.generate(queries, mutations, subsciptions )
24
+ return generator.generate(queries, mutations, subscriptions )
25
25
}
You can’t perform that action at this time.
0 commit comments