All Connections must be compliant with the Relay GraphQL pagination spec.
Details here.
Autofixer not available.
Examples of incorrect code for this rule:
type SampleConnection {
notEdges: [SampleEdge]
notPageInfo: [SamplePageInfo]
}type SampleConnection {
edges: SampleEdge
pageInfo: SamplePageInfo
}Examples of correct code for this rule:
type SampleConnection {
edges: [SampleEdge]
pageInfo: PageInfo!
}