export function isFragmentSpreadNode(node: SelectionNode): node is FragmentSpreadNode {
  return node.kind === Kind.FRAGMENT_SPREAD;
}