selectionSet property

SelectionSet? selectionSet

Implementation

SelectionSet? get selectionSet => astNode.selectionSet != null
    ? SelectionSet(
        astNode.selectionSet,
        getType.fromSchema!(type!.baseTypeName),
        getType,
      )
    : null;