If I create a custom type that begins with an underscore, for example, "_test_type", this type does not show up in graphql explorer or introspection.
This is related to CamelCase named fields are missing in GraphQL explorer and introspection - #9 by Fares
This is easily reproducible on any repo.
- Create a custom type called "_test_type"
- Add a document of that type
- Go to graphiql and try to query for that document type
Result: "_test_type" and "all_Test_types" are not there in graphql explorer
If I create a type called "test_type" and add a new document, as you'd expect, I can query "test_type" and "allTest_types". However, if you put an underscore at the beginning of the type name, nothing shows for that type in graphql explorer.