version: 2
title: Ingest
contributor: https://github.com/landon9720
summary: Ingest input file lines as graph nodes
description: Ingests each line in "$in_file" as graph node with property "line".

ingestStreams:
  - name: file-ingest
    source:
      type: File
      path: $in_file
      format:
        type: Line
    query: |-
      MATCH (n)
      WHERE id(n) = idFrom($that)
      SET n.line = $that

standingQueries: []
nodeAppearances: []
quickQueries: []
sampleQueries: []
