We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 838da6d commit a73a1e0Copy full SHA for a73a1e0
src/graphql/language/parser.py
@@ -157,6 +157,16 @@ def parse_type(
157
158
159
class Parser:
160
+ """GraphQL AST parser.
161
+
162
+ This class is exported only to assist people in implementing their own parsers
163
+ without duplicating too much code and should be used only as last resort for cases
164
+ such as experimental syntax or if certain features couldn't be contributed upstream.
165
166
+ It's still part of the internal API and is versioned, so any changes to it are never
167
+ considered breaking changes. If you still need to support multiple versions of the
168
+ library, please use the `__version_info__` variable for version detection.
169
+ """
170
171
_lexer: Lexer
172
_no_Location: bool
0 commit comments