@@ -3,7 +3,7 @@ Using an Introspection Query
33
44A third way of building a schema is using an introspection query on an existing server.
55This is what GraphiQL uses to get information about the schema on the remote server. You
6- can create an introspection query using GraphQL-core-next with::
6+ can create an introspection query using GraphQL-core 3 with::
77
88 from graphql import get_introspection_query
99
@@ -41,15 +41,15 @@ This result contains all the information that is available in the SDL descriptio
4141schema, i.e. it does not contain the resolve functions and information on the
4242server-side values of the enum types.
4343
44- You can convert the introspection result into ``GraphQLSchema `` with GraphQL-core-next
45- by using the :func: `graphql.utilities.build_client_schema ` function::
44+ You can convert the introspection result into ``GraphQLSchema `` with GraphQL-core 3 by
45+ using the :func: `graphql.utilities.build_client_schema ` function::
4646
4747 from graphql import build_client_schema
4848
4949 client_schema = build_client_schema(introspection_query_result.data)
5050
5151
52- It is also possible to convert the result to SDL with GraphQL-core-next by using the
52+ It is also possible to convert the result to SDL with GraphQL-core 3 by using the
5353:func: `graphql.utilities.print_schema ` function::
5454
5555 from graphql import print_schema
@@ -60,4 +60,4 @@ It is also possible to convert the result to SDL with GraphQL-core-next by using
6060This prints the SDL representation of the schema that we started with.
6161
6262As you see, it is easy to convert between the three forms of representing a GraphQL
63- schema in GraphQL-core-next .
63+ schema in GraphQL-core 3 .
0 commit comments