**Describe the bug** After creating a ToDo application using LoopBack, here is the OpenAPI spec: [openapi.txt](https://github.com/strongloop/oasgraph/files/2954909/openapi.txt) In the GraphQL explorer, the correct query is ``` query { todos2 { title desc } } ``` instead of ``` query { todos { title desc } } ``` I'm wondering where is the `todos2` is coming from? It doesn't seem to be matching the schema name or the endpoints.