export function isFieldNode(node: SelectionNode): node is FieldNode {
  return node.kind === Kind.FIELD;
}