Assume `main.graphql` ``` # import * from "./User.graphql" type Query { apiVersion: String! } ``` `User.graphql` ``` type User { name: String! } extend type Query { me: User! } ``` In resulting compiled schema Query has only version. There is no `me` field added.