selectionSet property

SelectionSetNode? selectionSet

Implementation

SelectionSetNode? get selectionSet {
  return when(
    field: (field) => field.selectionSet,
    fragmentSpread: (fragmentSpread) => fragmentSpread.selectionSet,
    inlineFragment: (inlineFragment) => inlineFragment.selectionSet,
  );
}