-
Notifications
You must be signed in to change notification settings - Fork 434
Closed
Labels
enhancementImprovement of existing features or bugfixImprovement of existing features or bugfixsemver::breakingBreaking change in terms of SemVerBreaking change in terms of SemVer
Milestone
Description
GraphQL October 2021 specification
New version of GraphQL spec is released. Full changelog.
Checklist
- RFC
__typename
is not valid at subscription root. - RFC Custom Scalar Specification URLs with
@specifiedBy
directive. - RFC Allow directives on variable definitions.
- RFC Allow interfaces to implement other interfaces.
- RFC Make sure that directives must be ordered for the schema.
juniper/juniper/src/parser/document.rs
Lines 473 to 490 in 032ff3f
fn parse_directives<'a, 'b, S>( parser: &mut Parser<'a>, schema: &'b SchemaType<'b, S>, ) -> OptionParseResult<'a, Vec<Spanning<Directive<'a, S>>>> where S: ScalarValue, { if parser.peek().item != Token::At { Ok(None) } else { let mut items = Vec::new(); while parser.peek().item == Token::At { items.push(parse_directive(parser, schema)?); } Ok(Spanning::spanning(items)) } }
- Update all references from
June2018
toOctober2021
mrtnzlmlLegNeato
Metadata
Metadata
Assignees
Labels
enhancementImprovement of existing features or bugfixImprovement of existing features or bugfixsemver::breakingBreaking change in terms of SemVerBreaking change in terms of SemVer