Mirror: The spec-compliant minimum of client-side GraphQL.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

refactor: Fix repetitive regex pattern in `selectionRe`

+1 -1
+1 -1
src/parser.ts
··· 293 293 const selectionRe = new RegExp( 294 294 '(?:' + 295 295 // fragment spreads (FragmentSpread or InlineFragment nodes) 296 - '(\\.\\.\\.)|' + 296 + '(\\.{3})|' + 297 297 // field aliases or names (FieldNode) 298 298 '(' + 299 299 nameRe.source +