Skip to content

Fix underscores being parsed in introspection doc #158

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 4, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions site/learn/Learn-Introspection.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ Wow, that's a lot of types! What are they? Let's group them:
defined in our type system.
- **String, Boolean** - These are built-in scalars that the type system
provided.
- **__Schema, __Type, __TypeKind, __Field, __InputValue, __EnumValue,
__Directive** - These all are preceded with a double underscore, indicating
that they are part of the introspection system.
- **\_\_Schema, \_\_Type, \_\_TypeKind, \_\_Field, \_\_InputValue,
\_\_EnumValue, \_\_Directive** - These all are preceded with a double
underscore, indicating that they are part of the introspection system.

Now, let's try and figure out a good place to start exploring what queries are
available. When we designed our type system, we specified what type all queries
Expand Down