:wave: Whats the correct way to tell apollo to bu...
# apollo-kotlin
m
👋 Whats the correct way to tell apollo to build a schema type for which I dont have a specific query or mutation?
👋 1
✅ 1
m
alwaysGenerateTypesMatching.set(listOf("YourType"))
should get you covered
Copy code
apollo {
  service("api") {
    alwaysGenerateTypesMatching.set(listOf("YourType"))
  }
}
m
ohh nice
will give it a go
thanks!
m
Sure thing!
m
yup worked like a charm, thanks!
🎉 1